package tv.dyndns.kishibe.qmaclone.client.creation.validater; import static org.junit.Assert.assertEquals; import java.util.Arrays; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; import tv.dyndns.kishibe.qmaclone.client.game.ProblemType; @RunWith(JUnit4.class) public class ValidatorEffectTest extends ValidatorTestBase { private ValidatorEffect validator; @Before public void setUp() throws Exception { super.setUp(); validator = new ValidatorEffect(); problem.type = ProblemType.Effect; problem.choices = toArray("ヒント"); problem.answers = toArray("アイウエオ"); } @Test public void checkShouldWork() { assertEquals(Arrays.asList(), validator.check(problem).warn); } @Test public void checkShouldReturnFalseIfNoChoices() { problem.choices = toArray(); assertEquals(Arrays.asList("ヒント(選択肢欄)が入力されていません"), validator.check(problem).warn); } @Test public void checkShouldReturnFalseIfNoAnswers() { problem.answers = toArray(); assertEquals(Arrays.asList("解答が入力されていません"), validator.check(problem).warn); } @Test public void checkShouldReturnFalseIfAnswerIsTooLong() { problem.answers = toArray("0123456789"); assertEquals(Arrays.asList("1番目の解答の文字数が多すぎます(8文字以下である必要があります)"), validator.check(problem).warn); } @Test public void checkShouldWorkReturnFalseIfAnswerIsInvalid() { problem.answers = toArray("無効"); assertEquals(Arrays.asList("1番目の解答に使用不可能な文字が含まれている、又は文字の種類が混在しています"), validator.check(problem).warn); } }