Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add unit tests for Prompter class methods #1086

Merged
merged 2 commits into from
Nov 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*
* 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.junit.jupiter.api.Assertions.*;

class PrompterTest {

@Test
void testPromptWithDefaultAnswer() {
String input = "\n";
System.setIn(new ByteArrayInputStream(input.getBytes()));
String result = Prompter.prompt("Enter your name", "defaultName");
assertEquals("defaultName", result);
romain-grecourt marked this conversation as resolved.
Show resolved Hide resolved
}

@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);
assertEquals("validInput", result);
}

@Test
void testPromptWithOptionalDefault() {
String input = "\n";
System.setIn(new ByteArrayInputStream(input.getBytes()));
String result = Prompter.prompt("Enter your name", Optional.of("defaultName"));
assertEquals("defaultName", result);
}

@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);
assertEquals(1, result);
}

@Test
void testPromptYesNo() {
String input = "y\n";
System.setIn(new ByteArrayInputStream(input.getBytes()));
boolean result = Prompter.promptYesNo("Do you agree?", false);
assertTrue(result);
}

}
Loading