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.jupiter.api.Assertions;
36  import org.junit.jupiter.api.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          Assertions.assertEquals("name", cookie.getName());
48          Assertions.assertEquals("value", cookie.getValue());
49          Assertions.assertThrows(NullPointerException.class, () -> new BasicClientCookie(null, null));
50      }
51  
52      @Test
53      public void testCloning() throws Exception {
54          final BasicClientCookie orig = new BasicClientCookie("name", "value");
55          orig.setDomain("domain");
56          orig.setPath("/");
57          orig.setAttribute("attrib", "stuff");
58          final BasicClientCookie clone = (BasicClientCookie) orig.clone();
59          Assertions.assertEquals(orig.getName(), clone.getName());
60          Assertions.assertEquals(orig.getValue(), clone.getValue());
61          Assertions.assertEquals(orig.getDomain(), clone.getDomain());
62          Assertions.assertEquals(orig.getPath(), clone.getPath());
63          Assertions.assertEquals(orig.getAttribute("attrib"), clone.getAttribute("attrib"));
64      }
65  
66      @Test
67      public void testSerialization() throws Exception {
68          final BasicClientCookie orig = new BasicClientCookie("name", "value");
69          orig.setDomain("domain");
70          orig.setPath("/");
71          orig.setAttribute("attrib", "stuff");
72          final ByteArrayOutputStream outbuffer = new ByteArrayOutputStream();
73          final ObjectOutputStream outStream = new ObjectOutputStream(outbuffer);
74          outStream.writeObject(orig);
75          outStream.close();
76          final byte[] raw = outbuffer.toByteArray();
77          final ByteArrayInputStream inBuffer = new ByteArrayInputStream(raw);
78          final ObjectInputStream inStream = new ObjectInputStream(inBuffer);
79          final BasicClientCookie clone = (BasicClientCookie) inStream.readObject();
80          Assertions.assertEquals(orig.getName(), clone.getName());
81          Assertions.assertEquals(orig.getValue(), clone.getValue());
82          Assertions.assertEquals(orig.getDomain(), clone.getDomain());
83          Assertions.assertEquals(orig.getPath(), clone.getPath());
84          Assertions.assertEquals(orig.getAttribute("attrib"), clone.getAttribute("attrib"));
85      }
86  
87  }