OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / libcore / luni / src / test / java / libcore / java / net / OldCookieHandlerTest.java
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements.  See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License.  You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package libcore.java.net;
18
19 import java.io.IOException;
20 import java.net.CookieHandler;
21 import java.net.URI;
22 import java.net.URL;
23 import java.net.URLConnection;
24 import java.util.Map;
25 import junit.framework.TestCase;
26 import tests.support.Support_Configuration;
27
28 public class OldCookieHandlerTest extends TestCase {
29
30     URI getURI, putURI;
31     String link = "http://" + Support_Configuration.SpecialInetTestAddress + "/";
32     boolean isGetCalled = false;
33     boolean isPutCalled = false;
34     boolean completedSuccessfully = false;
35
36     public void test_CookieHandler() {
37         assertNull(CookieHandler.getDefault());
38     }
39
40     public void test_get_put() {
41         MockCookieHandler mch = new MockCookieHandler();
42         CookieHandler defaultHandler = CookieHandler.getDefault();
43         CookieHandler.setDefault(mch);
44
45         class TestThread extends Thread {
46             public void run() {
47                 try {
48                     URL url = new URL(link);
49                     URLConnection conn = url.openConnection();
50                     conn.getContent();
51                     url = new URL(link);
52                     conn = url.openConnection();
53                     conn.getContent();
54                     completedSuccessfully = true;
55                 } catch (Exception e) {
56                     e.printStackTrace();
57                }
58             }
59         }
60         try {
61             TestThread thread = new TestThread();
62
63             thread.start();
64             try {
65                 thread.join();
66             } catch (InterruptedException e) {
67                 fail("InterruptedException was thrown.");
68             }
69
70             assertTrue(isGetCalled);
71             assertTrue(isPutCalled);
72             assertTrue(completedSuccessfully);
73         } finally {
74             CookieHandler.setDefault(defaultHandler);
75         }
76     }
77
78     class MockCookieHandler extends CookieHandler {
79
80         public Map get(URI uri, Map requestHeaders) throws IOException {
81             getURI = uri;
82             isGetCalled = true;
83             return requestHeaders;
84         }
85
86         public void put(URI uri, Map responseHeaders) throws IOException {
87             putURI = uri;
88             isPutCalled = true;
89         }
90     }
91 }