UpgradeContextTest.java

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.maven.cling.invoker.mvnup;

import java.nio.file.Paths;

import org.apache.maven.cling.invoker.mvnup.goals.TestUtils;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertNotNull;

/**
 * Unit tests for the {@link UpgradeContext} class.
 * Tests console output formatting and Unicode icon fallback behavior.
 */
@DisplayName("UpgradeContext")
class UpgradeContextTest {

    @Test
    @DisplayName("should create context successfully")
    void shouldCreateContextSuccessfully() {
        // Use existing test utilities to create a context
        UpgradeContext context = TestUtils.createMockContext(Paths.get("/test"));

        // Verify context is created and basic methods work
        assertNotNull(context, "Context should be created");
        assertNotNull(context.options(), "Options should be available");

        // Test that icon methods don't throw exceptions
        // (The actual icon choice depends on terminal charset capabilities)
        context.success("Test success message");
        context.failure("Test failure message");
        context.warning("Test warning message");
        context.detail("Test detail message");
        context.action("Test action message");
    }

    @Test
    @DisplayName("should handle indentation correctly")
    void shouldHandleIndentationCorrectly() {
        UpgradeContext context = TestUtils.createMockContext(Paths.get("/test"));

        // Test indentation methods don't throw exceptions
        context.indent();
        context.indent();
        context.info("Indented message");

        context.unindent();
        context.unindent();
        context.unindent(); // Should not go below 0
        context.info("Unindented message");
    }

    @Test
    @DisplayName("should handle icon rendering based on terminal capabilities")
    void shouldHandleIconRenderingBasedOnTerminalCapabilities() {
        UpgradeContext context = TestUtils.createMockContext(Paths.get("/test"));

        // Test that icon rendering doesn't throw exceptions
        // The actual icons used depend on the terminal's charset capabilities
        context.success("Icon rendering test");
        context.failure("Icon rendering test");
        context.warning("Icon rendering test");
        context.detail("Icon rendering test");
        context.action("Icon rendering test");

        // We just verify the methods work without throwing exceptions
        // The specific icons (Unicode vs ASCII) depend on terminal charset
    }
}