Revision 8696
Added by Jing Tao over 10 years ago
test/edu/ucsb/nceas/metacattest/MetaCatServletTest.java | ||
---|---|---|
137 | 137 |
|
138 | 138 |
suite.addTest(new MetaCatServletTest("testReindexFail")); |
139 | 139 |
|
140 |
suite.addTest(new MetaCatServletTest("testPiscoReferralLogin")); |
|
141 | 140 |
|
142 |
suite.addTest(new MetaCatServletTest("testPiscoReferralLoginFail")); |
|
143 |
|
|
144 | 141 |
return suite; |
145 | 142 |
} |
146 | 143 |
|
... | ... | |
249 | 246 |
// assertTrue( withProtocol.getProtocol().equals("http")); |
250 | 247 |
} |
251 | 248 |
|
252 |
/** |
|
253 |
* Test the login to Other succesfully |
|
254 |
*/ |
|
255 |
public void testPiscoReferralLogin() { |
|
256 |
debug("\nRunning: testPiscoReferralLogin test"); |
|
257 |
String user = piscouser; |
|
258 |
String passwd = piscopassword; |
|
259 |
debug("logging in pisco user: " + user + ":" + passwd); |
|
260 |
assertTrue(logIn(user, passwd)); |
|
261 |
// assertTrue( withProtocol.getProtocol().equals("http")); |
|
262 |
} |
|
263 | 249 |
|
264 |
/** |
|
265 |
* Test the login to Other failed |
|
266 |
*/ |
|
267 |
public void testPiscoReferralLoginFail() { |
|
268 |
debug("\nRunning: testPiscoReferralLoginFail test"); |
|
269 |
String user = piscouser; |
|
270 |
String passwd = "wrong"; |
|
271 |
assertTrue(!logIn(user, passwd)); |
|
272 |
// assertTrue( withProtocol.getProtocol().equals("http")); |
|
273 |
} |
|
274 | 250 |
|
275 | 251 |
/** |
276 | 252 |
* Test insert a xml document successfully |
Also available in: Unified diff
Remove the test method for the pisco account since it maybe fails because of the fire wall issue.