/httpcomponents-client-4.1.3/httpclient/src/test/java/org/apache/http/impl/cookie/TestBasicCookieAttribHandlers.java

# · Java · 502 lines · 393 code · 59 blank · 50 comment · 0 complexity · 0aafe0738d264e26a534ea3dedcb857e MD5 · raw file

  1. /*
  2. * ====================================================================
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. * ====================================================================
  20. *
  21. * This software consists of voluntary contributions made by many
  22. * individuals on behalf of the Apache Software Foundation. For more
  23. * information on the Apache Software Foundation, please see
  24. * <http://www.apache.org/>.
  25. *
  26. */
  27. package org.apache.http.impl.cookie;
  28. import java.text.DateFormat;
  29. import java.text.SimpleDateFormat;
  30. import java.util.Arrays;
  31. import java.util.Date;
  32. import java.util.Locale;
  33. import org.apache.http.cookie.CookieAttributeHandler;
  34. import org.apache.http.cookie.CookieOrigin;
  35. import org.apache.http.cookie.MalformedCookieException;
  36. import org.apache.http.impl.cookie.BasicClientCookie;
  37. import org.apache.http.impl.cookie.BasicCommentHandler;
  38. import org.apache.http.impl.cookie.BasicDomainHandler;
  39. import org.apache.http.impl.cookie.BasicExpiresHandler;
  40. import org.apache.http.impl.cookie.BasicMaxAgeHandler;
  41. import org.apache.http.impl.cookie.BasicPathHandler;
  42. import org.apache.http.impl.cookie.BasicSecureHandler;
  43. import org.apache.http.impl.cookie.DateUtils;
  44. import org.apache.http.impl.cookie.PublicSuffixFilter;
  45. import org.apache.http.impl.cookie.RFC2109DomainHandler;
  46. import org.junit.Assert;
  47. import org.junit.Test;
  48. public class TestBasicCookieAttribHandlers {
  49. @Test
  50. public void testBasicDomainParse() throws Exception {
  51. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  52. CookieAttributeHandler h = new BasicDomainHandler();
  53. h.parse(cookie, "www.somedomain.com");
  54. Assert.assertEquals("www.somedomain.com", cookie.getDomain());
  55. }
  56. @Test(expected=MalformedCookieException.class)
  57. public void testBasicDomainParseInvalid1() throws Exception {
  58. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  59. CookieAttributeHandler h = new BasicDomainHandler();
  60. h.parse(cookie, "");
  61. }
  62. @Test(expected=MalformedCookieException.class)
  63. public void testBasicDomainParseInvalid2() throws Exception {
  64. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  65. CookieAttributeHandler h = new BasicDomainHandler();
  66. h.parse(cookie, null);
  67. }
  68. @Test
  69. public void testBasicDomainValidate1() throws Exception {
  70. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  71. CookieOrigin origin = new CookieOrigin("www.somedomain.com", 80, "/", false);
  72. CookieAttributeHandler h = new BasicDomainHandler();
  73. cookie.setDomain(".somedomain.com");
  74. h.validate(cookie, origin);
  75. cookie.setDomain(".otherdomain.com");
  76. try {
  77. h.validate(cookie, origin);
  78. Assert.fail("MalformedCookieException should have been thrown");
  79. } catch (MalformedCookieException ex) {
  80. // expected
  81. }
  82. cookie.setDomain("www.otherdomain.com");
  83. try {
  84. h.validate(cookie, origin);
  85. Assert.fail("MalformedCookieException should have been thrown");
  86. } catch (MalformedCookieException ex) {
  87. // expected
  88. }
  89. }
  90. @Test
  91. public void testBasicDomainValidate2() throws Exception {
  92. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  93. CookieOrigin origin = new CookieOrigin("somehost", 80, "/", false);
  94. CookieAttributeHandler h = new BasicDomainHandler();
  95. cookie.setDomain("somehost");
  96. h.validate(cookie, origin);
  97. cookie.setDomain("otherhost");
  98. try {
  99. h.validate(cookie, origin);
  100. Assert.fail("MalformedCookieException should have been thrown");
  101. } catch (MalformedCookieException ex) {
  102. // expected
  103. }
  104. }
  105. @Test
  106. public void testBasicDomainValidate3() throws Exception {
  107. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  108. CookieOrigin origin = new CookieOrigin("somedomain.com", 80, "/", false);
  109. CookieAttributeHandler h = new BasicDomainHandler();
  110. cookie.setDomain(".somedomain.com");
  111. h.validate(cookie, origin);
  112. }
  113. @Test
  114. public void testBasicDomainValidate4() throws Exception {
  115. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  116. CookieOrigin origin = new CookieOrigin("somedomain.com", 80, "/", false);
  117. CookieAttributeHandler h = new BasicDomainHandler();
  118. cookie.setDomain(null);
  119. try {
  120. h.validate(cookie, origin);
  121. Assert.fail("MalformedCookieException should have been thrown");
  122. } catch (MalformedCookieException ex) {
  123. // expected
  124. }
  125. }
  126. @Test
  127. public void testBasicDomainMatch1() throws Exception {
  128. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  129. CookieOrigin origin = new CookieOrigin("somedomain.com", 80, "/", false);
  130. CookieAttributeHandler h = new BasicDomainHandler();
  131. cookie.setDomain("somedomain.com");
  132. Assert.assertTrue(h.match(cookie, origin));
  133. cookie.setDomain(".somedomain.com");
  134. Assert.assertTrue(h.match(cookie, origin));
  135. }
  136. @Test
  137. public void testBasicDomainMatch2() throws Exception {
  138. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  139. CookieOrigin origin = new CookieOrigin("www.somedomain.com", 80, "/", false);
  140. CookieAttributeHandler h = new BasicDomainHandler();
  141. cookie.setDomain("somedomain.com");
  142. Assert.assertTrue(h.match(cookie, origin));
  143. cookie.setDomain(".somedomain.com");
  144. Assert.assertTrue(h.match(cookie, origin));
  145. cookie.setDomain(null);
  146. Assert.assertFalse(h.match(cookie, origin));
  147. }
  148. @Test
  149. public void testBasicDomainInvalidInput() throws Exception {
  150. CookieAttributeHandler h = new BasicDomainHandler();
  151. try {
  152. h.parse(null, null);
  153. Assert.fail("IllegalArgumentException must have been thrown");
  154. } catch (IllegalArgumentException ex) {
  155. // expected
  156. }
  157. try {
  158. h.validate(null, null);
  159. Assert.fail("IllegalArgumentException must have been thrown");
  160. } catch (IllegalArgumentException ex) {
  161. // expected
  162. }
  163. try {
  164. h.validate(new BasicClientCookie("name", "value"), null);
  165. Assert.fail("IllegalArgumentException must have been thrown");
  166. } catch (IllegalArgumentException ex) {
  167. // expected
  168. }
  169. try {
  170. h.match(null, null);
  171. Assert.fail("IllegalArgumentException must have been thrown");
  172. } catch (IllegalArgumentException ex) {
  173. // expected
  174. }
  175. try {
  176. h.match(new BasicClientCookie("name", "value"), null);
  177. Assert.fail("IllegalArgumentException must have been thrown");
  178. } catch (IllegalArgumentException ex) {
  179. // expected
  180. }
  181. }
  182. @Test
  183. public void testBasicPathParse() throws Exception {
  184. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  185. CookieAttributeHandler h = new BasicPathHandler();
  186. h.parse(cookie, "stuff");
  187. Assert.assertEquals("stuff", cookie.getPath());
  188. h.parse(cookie, "");
  189. Assert.assertEquals("/", cookie.getPath());
  190. h.parse(cookie, null);
  191. Assert.assertEquals("/", cookie.getPath());
  192. }
  193. @Test
  194. public void testBasicPathMatch1() throws Exception {
  195. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  196. CookieOrigin origin = new CookieOrigin("somehost", 80, "/stuff", false);
  197. CookieAttributeHandler h = new BasicPathHandler();
  198. cookie.setPath("/stuff");
  199. Assert.assertTrue(h.match(cookie, origin));
  200. }
  201. @Test
  202. public void testBasicPathMatch2() throws Exception {
  203. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  204. CookieOrigin origin = new CookieOrigin("somehost", 80, "/stuff/", false);
  205. CookieAttributeHandler h = new BasicPathHandler();
  206. cookie.setPath("/stuff");
  207. Assert.assertTrue(h.match(cookie, origin));
  208. }
  209. @Test
  210. public void testBasicPathMatch3() throws Exception {
  211. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  212. CookieOrigin origin = new CookieOrigin("somehost", 80, "/stuff/more-stuff", false);
  213. CookieAttributeHandler h = new BasicPathHandler();
  214. cookie.setPath("/stuff");
  215. Assert.assertTrue(h.match(cookie, origin));
  216. }
  217. @Test
  218. public void testBasicPathMatch4() throws Exception {
  219. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  220. CookieOrigin origin = new CookieOrigin("somehost", 80, "/stuffed", false);
  221. CookieAttributeHandler h = new BasicPathHandler();
  222. cookie.setPath("/stuff");
  223. Assert.assertFalse(h.match(cookie, origin));
  224. }
  225. @Test
  226. public void testBasicPathMatch5() throws Exception {
  227. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  228. CookieOrigin origin = new CookieOrigin("somehost", 80, "/otherstuff", false);
  229. CookieAttributeHandler h = new BasicPathHandler();
  230. cookie.setPath("/stuff");
  231. Assert.assertFalse(h.match(cookie, origin));
  232. }
  233. @Test
  234. public void testBasicPathMatch6() throws Exception {
  235. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  236. CookieOrigin origin = new CookieOrigin("somehost", 80, "/stuff", false);
  237. CookieAttributeHandler h = new BasicPathHandler();
  238. cookie.setPath("/stuff/");
  239. Assert.assertTrue(h.match(cookie, origin));
  240. }
  241. @Test
  242. public void testBasicPathMatch7() throws Exception {
  243. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  244. CookieOrigin origin = new CookieOrigin("somehost", 80, "/stuff", false);
  245. CookieAttributeHandler h = new BasicPathHandler();
  246. Assert.assertTrue(h.match(cookie, origin));
  247. }
  248. @Test
  249. public void testBasicPathValidate() throws Exception {
  250. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  251. CookieOrigin origin = new CookieOrigin("somehost", 80, "/stuff", false);
  252. CookieAttributeHandler h = new BasicPathHandler();
  253. cookie.setPath("/stuff");
  254. h.validate(cookie, origin);
  255. cookie.setPath("/stuffed");
  256. try {
  257. h.validate(cookie, origin);
  258. Assert.fail("MalformedCookieException must have been thrown");
  259. } catch (MalformedCookieException ex) {
  260. // expected
  261. }
  262. }
  263. @Test
  264. public void testBasicPathInvalidInput() throws Exception {
  265. CookieAttributeHandler h = new BasicPathHandler();
  266. try {
  267. h.parse(null, null);
  268. Assert.fail("IllegalArgumentException must have been thrown");
  269. } catch (IllegalArgumentException ex) {
  270. // expected
  271. }
  272. try {
  273. h.match(null, null);
  274. Assert.fail("IllegalArgumentException must have been thrown");
  275. } catch (IllegalArgumentException ex) {
  276. // expected
  277. }
  278. try {
  279. h.match(new BasicClientCookie("name", "value"), null);
  280. Assert.fail("IllegalArgumentException must have been thrown");
  281. } catch (IllegalArgumentException ex) {
  282. // expected
  283. }
  284. }
  285. @Test
  286. public void testBasicMaxAgeParse() throws Exception {
  287. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  288. CookieAttributeHandler h = new BasicMaxAgeHandler();
  289. h.parse(cookie, "2000");
  290. Assert.assertNotNull(cookie.getExpiryDate());
  291. }
  292. @Test
  293. public void testBasicMaxAgeParseInvalid() throws Exception {
  294. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  295. CookieAttributeHandler h = new BasicMaxAgeHandler();
  296. try {
  297. h.parse(cookie, "garbage");
  298. Assert.fail("MalformedCookieException must have been thrown");
  299. } catch (MalformedCookieException ex) {
  300. // expected
  301. }
  302. try {
  303. h.parse(cookie, null);
  304. Assert.fail("MalformedCookieException must have been thrown");
  305. } catch (MalformedCookieException ex) {
  306. // expected
  307. }
  308. }
  309. @Test
  310. public void testBasicMaxAgeInvalidInput() throws Exception {
  311. CookieAttributeHandler h = new BasicMaxAgeHandler();
  312. try {
  313. h.parse(null, null);
  314. Assert.fail("IllegalArgumentException must have been thrown");
  315. } catch (IllegalArgumentException ex) {
  316. // expected
  317. }
  318. }
  319. @Test
  320. public void testBasicCommentParse() throws Exception {
  321. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  322. CookieAttributeHandler h = new BasicCommentHandler();
  323. h.parse(cookie, "whatever");
  324. Assert.assertEquals("whatever", cookie.getComment());
  325. h.parse(cookie, null);
  326. Assert.assertEquals(null, cookie.getComment());
  327. }
  328. @Test
  329. public void testBasicCommentInvalidInput() throws Exception {
  330. CookieAttributeHandler h = new BasicCommentHandler();
  331. try {
  332. h.parse(null, null);
  333. Assert.fail("IllegalArgumentException must have been thrown");
  334. } catch (IllegalArgumentException ex) {
  335. // expected
  336. }
  337. }
  338. @Test
  339. public void testBasicSecureParse() throws Exception {
  340. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  341. CookieAttributeHandler h = new BasicSecureHandler();
  342. h.parse(cookie, "whatever");
  343. Assert.assertTrue(cookie.isSecure());
  344. h.parse(cookie, null);
  345. Assert.assertTrue(cookie.isSecure());
  346. }
  347. @Test
  348. public void testBasicSecureMatch() throws Exception {
  349. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  350. CookieAttributeHandler h = new BasicSecureHandler();
  351. CookieOrigin origin1 = new CookieOrigin("somehost", 80, "/stuff", false);
  352. cookie.setSecure(false);
  353. Assert.assertTrue(h.match(cookie, origin1));
  354. cookie.setSecure(true);
  355. Assert.assertFalse(h.match(cookie, origin1));
  356. CookieOrigin origin2 = new CookieOrigin("somehost", 80, "/stuff", true);
  357. cookie.setSecure(false);
  358. Assert.assertTrue(h.match(cookie, origin2));
  359. cookie.setSecure(true);
  360. Assert.assertTrue(h.match(cookie, origin2));
  361. }
  362. @Test
  363. public void testBasicSecureInvalidInput() throws Exception {
  364. CookieAttributeHandler h = new BasicSecureHandler();
  365. try {
  366. h.parse(null, null);
  367. Assert.fail("IllegalArgumentException must have been thrown");
  368. } catch (IllegalArgumentException ex) {
  369. // expected
  370. }
  371. try {
  372. h.match(null, null);
  373. Assert.fail("IllegalArgumentException must have been thrown");
  374. } catch (IllegalArgumentException ex) {
  375. // expected
  376. }
  377. try {
  378. h.match(new BasicClientCookie("name", "value"), null);
  379. Assert.fail("IllegalArgumentException must have been thrown");
  380. } catch (IllegalArgumentException ex) {
  381. // expected
  382. }
  383. }
  384. @Test
  385. public void testBasicExpiresParse() throws Exception {
  386. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  387. CookieAttributeHandler h = new BasicExpiresHandler(new String[] {DateUtils.PATTERN_RFC1123});
  388. DateFormat dateformat = new SimpleDateFormat(DateUtils.PATTERN_RFC1123, Locale.US);
  389. dateformat.setTimeZone(DateUtils.GMT);
  390. Date now = new Date();
  391. h.parse(cookie, dateformat.format(now));
  392. Assert.assertNotNull(cookie.getExpiryDate());
  393. }
  394. @Test
  395. public void testBasicExpiresParseInvalid() throws Exception {
  396. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  397. CookieAttributeHandler h = new BasicExpiresHandler(new String[] {DateUtils.PATTERN_RFC1123});
  398. try {
  399. h.parse(cookie, "garbage");
  400. Assert.fail("MalformedCookieException must have been thrown");
  401. } catch (MalformedCookieException ex) {
  402. // expected
  403. }
  404. try {
  405. h.parse(cookie, null);
  406. Assert.fail("MalformedCookieException must have been thrown");
  407. } catch (MalformedCookieException ex) {
  408. // expected
  409. }
  410. }
  411. @Test
  412. public void testBasicExpiresInvalidInput() throws Exception {
  413. try {
  414. new BasicExpiresHandler(null);
  415. Assert.fail("IllegalArgumentException must have been thrown");
  416. } catch (IllegalArgumentException ex) {
  417. // expected
  418. }
  419. CookieAttributeHandler h = new BasicExpiresHandler(new String[] {DateUtils.PATTERN_RFC1123});
  420. try {
  421. h.parse(null, null);
  422. Assert.fail("IllegalArgumentException must have been thrown");
  423. } catch (IllegalArgumentException ex) {
  424. // expected
  425. }
  426. }
  427. @Test
  428. public void testPublicSuffixFilter() throws Exception {
  429. BasicClientCookie cookie = new BasicClientCookie("name", "value");
  430. PublicSuffixFilter h = new PublicSuffixFilter(new RFC2109DomainHandler());
  431. h.setPublicSuffixes(Arrays.asList(new String[] { "co.uk", "com" }));
  432. cookie.setDomain(".co.uk");
  433. Assert.assertFalse(h.match(cookie, new CookieOrigin("apache.co.uk", 80, "/stuff", false)));
  434. cookie.setDomain("co.uk");
  435. Assert.assertFalse(h.match(cookie, new CookieOrigin("apache.co.uk", 80, "/stuff", false)));
  436. cookie.setDomain(".com");
  437. Assert.assertFalse(h.match(cookie, new CookieOrigin("apache.com", 80, "/stuff", false)));
  438. cookie.setDomain("com");
  439. Assert.assertFalse(h.match(cookie, new CookieOrigin("apache.com", 80, "/stuff", false)));
  440. cookie.setDomain("localhost");
  441. Assert.assertTrue(h.match(cookie, new CookieOrigin("localhost", 80, "/stuff", false)));
  442. }
  443. }