-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add unit tests for Prompter class methods (#1086)
* Add unit tests for Prompter class methods * update to use assertThat function
- Loading branch information
1 parent
3d004f5
commit db8224f
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
72 changes: 72 additions & 0 deletions
72
archetype/engine-v1/src/test/java/io/helidon/build/archetype/engine/v1/PrompterTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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<String> 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<String> 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)); | ||
} | ||
|
||
} |