summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/gitblit/tests/UserChoiceTest.java
diff options
context:
space:
mode:
authorJames Moger <james.moger@gitblit.com>2014-02-19 09:04:55 -0500
committerJames Moger <james.moger@gitblit.com>2014-02-19 09:04:55 -0500
commitb2775fefaafb0ce89094bdd4bb5308dbb90f487b (patch)
tree4f5398a3bdbaecca25a1a5b0858cb90ac3b63383 /src/test/java/com/gitblit/tests/UserChoiceTest.java
parent0648b33b882a5bb2ddef3cad7c16df15158af8a0 (diff)
parent37d5b7cda27ae7da5690f0b0ce0dee4421624810 (diff)
downloadgitblit-b2775fefaafb0ce89094bdd4bb5308dbb90f487b.tar.gz
gitblit-b2775fefaafb0ce89094bdd4bb5308dbb90f487b.zip
Merge commit 'refs/tickets/08/8/3' of https://dev.gitblit.com/r/gitblit
Diffstat (limited to 'src/test/java/com/gitblit/tests/UserChoiceTest.java')
-rw-r--r--src/test/java/com/gitblit/tests/UserChoiceTest.java63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/test/java/com/gitblit/tests/UserChoiceTest.java b/src/test/java/com/gitblit/tests/UserChoiceTest.java
new file mode 100644
index 00000000..b0effcd1
--- /dev/null
+++ b/src/test/java/com/gitblit/tests/UserChoiceTest.java
@@ -0,0 +1,63 @@
+/*
+ * Copyright 2014 gitblit.com.
+ *
+ * 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 com.gitblit.tests;
+
+import org.junit.Test;
+
+import com.gitblit.models.UserChoice;
+
+/**
+ * Test behavior of UserChoice class.
+ *
+ * @author Alfred Schmid
+ *
+ */
+public class UserChoiceTest extends GitblitUnitTest {
+
+ @Test(expected=IllegalArgumentException.class)
+ public void creatingUserChoiceWithNullAsUserIdIsImpossible() {
+ new UserChoice(null);
+ }
+
+ @Test(expected=IllegalArgumentException.class)
+ public void creatingUserChoiceWithEmptyStringAsUserIdIsImpossible() {
+ new UserChoice("");
+ }
+
+ @Test
+ public void toStringPrintsPlainUserIdWhenDisplayNameIsNull() {
+ String userId = "runnerr";
+ UserChoice userChoice = new UserChoice(userId);
+ assertEquals("", userId, userChoice.toString());
+ }
+
+ @Test
+ public void toStringPrintsPlainUserIdWhenDisplayNameIsEmpty() {
+ String userId = "runnerr";
+ UserChoice userChoice = new UserChoice("", userId);
+ assertEquals("", userId, userChoice.toString());
+ }
+
+ @Test
+ public void toStringPrintsDisplaNameWithUserIdInBracketsWhenDisplayNameIsSet() {
+ String userId = "runnerr";
+ String displayName = "The Road Runner";
+ UserChoice userChoice = new UserChoice(displayName, userId);
+ assertEquals(
+ "displayName + userId have to be concatenated to: displayName (userId)",
+ displayName + " (" + userId + ")", userChoice.toString());
+ }
+}