View Javadoc
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  
28  package org.apache.hc.client5.http.impl.cookie;
29  
30  import java.io.ByteArrayInputStream;
31  import java.io.ByteArrayOutputStream;
32  import java.io.ObjectInputStream;
33  import java.io.ObjectOutputStream;
34  
35  import org.junit.Assert;
36  import org.junit.Test;
37  
38  /**
39   * Unit tests for {@link BasicClientCookie}.
40   */
41  public class TestBasicClientCookie {
42  
43      @SuppressWarnings("unused")
44      @Test
45      public void testConstructor() {
46          final BasicClientCookie cookie = new BasicClientCookie("name", "value");
47          Assert.assertEquals("name", cookie.getName());
48          Assert.assertEquals("value", cookie.getValue());
49          try {
50              new BasicClientCookie(null, null);
51              Assert.fail("NullPointerException should have been thrown");
52          } catch (final NullPointerException ex) {
53              //expected
54          }
55      }
56  
57      @Test
58      public void testCloning() throws Exception {
59          final BasicClientCookie orig = new BasicClientCookie("name", "value");
60          orig.setDomain("domain");
61          orig.setPath("/");
62          orig.setAttribute("attrib", "stuff");
63          final BasicClientCookie clone = (BasicClientCookie) orig.clone();
64          Assert.assertEquals(orig.getName(), clone.getName());
65          Assert.assertEquals(orig.getValue(), clone.getValue());
66          Assert.assertEquals(orig.getDomain(), clone.getDomain());
67          Assert.assertEquals(orig.getPath(), clone.getPath());
68          Assert.assertEquals(orig.getAttribute("attrib"), clone.getAttribute("attrib"));
69      }
70  
71      @Test
72      public void testSerialization() throws Exception {
73          final BasicClientCookie orig = new BasicClientCookie("name", "value");
74          orig.setDomain("domain");
75          orig.setPath("/");
76          orig.setAttribute("attrib", "stuff");
77          final ByteArrayOutputStream outbuffer = new ByteArrayOutputStream();
78          final ObjectOutputStream outStream = new ObjectOutputStream(outbuffer);
79          outStream.writeObject(orig);
80          outStream.close();
81          final byte[] raw = outbuffer.toByteArray();
82          final ByteArrayInputStream inBuffer = new ByteArrayInputStream(raw);
83          final ObjectInputStream inStream = new ObjectInputStream(inBuffer);
84          final BasicClientCookie clone = (BasicClientCookie) inStream.readObject();
85          Assert.assertEquals(orig.getName(), clone.getName());
86          Assert.assertEquals(orig.getValue(), clone.getValue());
87          Assert.assertEquals(orig.getDomain(), clone.getDomain());
88          Assert.assertEquals(orig.getPath(), clone.getPath());
89          Assert.assertEquals(orig.getAttribute("attrib"), clone.getAttribute("attrib"));
90      }
91  
92  }