1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31 package org.apache.commons.httpclient;
32
33 import junit.framework.Test;
34 import junit.framework.TestCase;
35 import junit.framework.TestSuite;
36
37 /***
38 * Unit tests for {@link Credentials}.
39 *
40 * @author Rodney Waldhoff
41 * @author <a href="mailto:jsdever@apache.org">Jeff Dever</a>
42 * @version $Id: TestCredentials.java 192979 2005-06-22 19:38:51Z olegk $
43 */
44 public class TestCredentials extends TestCase {
45
46
47 public TestCredentials(String testName) {
48 super(testName);
49 }
50
51
52 public static void main(String args[]) {
53 String[] testCaseName = { TestCredentials.class.getName() };
54 junit.textui.TestRunner.main(testCaseName);
55 }
56
57
58
59 public static Test suite() {
60 return new TestSuite(TestCredentials.class);
61 }
62
63 public void testCredentialConstructors() {
64 try {
65 new UsernamePasswordCredentials(null, null);
66 fail("IllegalArgumentException should have been thrown");
67 } catch (IllegalArgumentException e) {
68
69 }
70 try {
71 new NTCredentials("user", "password", null, null);
72 fail("IllegalArgumentException should have been thrown");
73 } catch (IllegalArgumentException e) {
74
75 }
76 try {
77 new NTCredentials("user", "password", "host", null);
78 fail("IllegalArgumentException should have been thrown");
79 } catch (IllegalArgumentException e) {
80
81 }
82 NTCredentials creds = new NTCredentials("user", null, "host", "domain");
83 assertNotNull(creds.getUserName());
84 assertNull(creds.getPassword());
85 assertNotNull(creds.getDomain());
86 assertNotNull(creds.getHost());
87 }
88
89 /***
90 * Verifies that credentials report equal when they should.
91 */
92 public void testCredentialEquals() {
93
94 Credentials creds1 = new UsernamePasswordCredentials("user1", "password1");
95 Credentials creds1Again = new UsernamePasswordCredentials("user1", "password1");
96 Credentials creds2 = new UsernamePasswordCredentials("user2", "password2");
97 Credentials creds3 = new UsernamePasswordCredentials("user3", null);
98 Credentials creds3Again = new UsernamePasswordCredentials("user3", null);
99
100 assertEquals(creds1, creds1Again);
101 assertNotSame(creds1, creds2);
102 assertEquals(creds3, creds3Again);
103
104 Credentials ntCreds1 = new NTCredentials("user1", "password1", "host1", "domain1");
105 Credentials ntCreds1Again = new NTCredentials("user1", "password1", "host1", "domain1");
106 Credentials ntCreds2 = new NTCredentials("user1", "password2", "host1", "domain1");
107 Credentials ntCreds3 = new NTCredentials("user1", "password1", "host2", "domain1");
108 Credentials ntCreds4 = new NTCredentials("user1", "password1", "host1", "domain2");
109
110 assertEquals(ntCreds1, ntCreds1Again);
111 assertNotSame(ntCreds1, creds1);
112 assertNotSame(creds1, ntCreds1);
113 assertNotSame(ntCreds1, ntCreds2);
114 assertNotSame(ntCreds1, ntCreds3);
115 assertNotSame(ntCreds1, ntCreds4);
116 }
117 }