From db8224f4ca1da16e8f22844b0f37e842cf8cbf2d Mon Sep 17 00:00:00 2001 From: Abdelhak Zaaim Date: Wed, 13 Nov 2024 17:46:17 +0100 Subject: [PATCH] Add unit tests for Prompter class methods (#1086) * Add unit tests for Prompter class methods * update to use assertThat function --- .../archetype/engine/v1/PrompterTest.java | 72 +++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 archetype/engine-v1/src/test/java/io/helidon/build/archetype/engine/v1/PrompterTest.java diff --git a/archetype/engine-v1/src/test/java/io/helidon/build/archetype/engine/v1/PrompterTest.java b/archetype/engine-v1/src/test/java/io/helidon/build/archetype/engine/v1/PrompterTest.java new file mode 100644 index 000000000..c1110442d --- /dev/null +++ b/archetype/engine-v1/src/test/java/io/helidon/build/archetype/engine/v1/PrompterTest.java @@ -0,0 +1,72 @@ +/* + * Copyright (c) 2024 Oracle and/or its affiliates. + * + * Licensed 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 io.helidon.build.archetype.engine.v1; + +import org.junit.jupiter.api.Test; + +import java.io.ByteArrayInputStream; +import java.util.List; +import java.util.Optional; +import java.util.function.Predicate; + +import static org.hamcrest.MatcherAssert.*; +import static org.hamcrest.Matchers.is; + +class PrompterTest { + + @Test + void testPromptWithDefaultAnswer() { + String input = "\n"; + System.setIn(new ByteArrayInputStream(input.getBytes())); + String result = Prompter.prompt("Enter your name", "defaultName"); + assertThat(result, is("defaultName")); + } + + @Test + void testPromptWithValidator() { + String input = "validInput\n"; + System.setIn(new ByteArrayInputStream(input.getBytes())); + Predicate validator = s -> s.equals("validInput"); + String result = Prompter.prompt("Enter valid input", null, validator); + assertThat(result, is("validInput")); + } + + @Test + void testPromptWithOptionalDefault() { + String input = "\n"; + System.setIn(new ByteArrayInputStream(input.getBytes())); + String result = Prompter.prompt("Enter your name", Optional.of("defaultName")); + assertThat(result, is("defaultName")); + } + + @Test + void testPromptSelection() { + String input = "2\n"; + System.setIn(new ByteArrayInputStream(input.getBytes())); + List options = List.of("Option 1", "Option 2", "Option 3"); + int result = Prompter.prompt("Choose an option", options, 0); + assertThat(result, is(1)); + } + + @Test + void testPromptYesNo() { + String input = "y\n"; + System.setIn(new ByteArrayInputStream(input.getBytes())); + boolean result = Prompter.promptYesNo("Do you agree?", false); + assertThat(result, is(true)); + } + +} \ No newline at end of file