View Javadoc

1   package org.apache.directmemory.test;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.directmemory.serialization.Serializer;
23  import org.apache.directmemory.serialization.SerializerFactory;
24  import org.apache.directmemory.serialization.SerializerNotFoundException;
25  import org.junit.Test;
26  
27  import static junit.framework.Assert.assertEquals;
28  
29  /**
30   * A kind of tck test for serializer.
31   */
32  public abstract class AbstractSerializerTest
33  {
34      public abstract String getSerializerClassName();
35  
36      @Test
37      public void factoryWithFQDN()
38          throws Exception
39      {
40          assertEquals( getSerializerClassName(),
41                        SerializerFactory.createNewSerializer( getSerializerClassName() ).getClass().getName() );
42      }
43  
44      @Test
45      public void simpleSerialization()
46          throws Exception
47      {
48          Wine wine = getWineInstance();
49  
50          Serializer serializer = SerializerFactory.createNewSerializer( getSerializerClassName() );
51  
52          byte[] bytes = serializer.serialize( wine );
53  
54          Wine newWine = serializer.deserialize( bytes, Wine.class );
55  
56          assertEquals( wine.getName(), newWine.getName() );
57          assertEquals( wine.getDescription(), newWine.getDescription() );
58  
59      }
60  
61      protected Wine getWineInstance()
62      {
63          return new Wine( "Gevrey-Chambertin", "nice French wine from Bourgogne" );
64      }
65  
66      @Test( expected = SerializerNotFoundException.class )
67      public void serialiazerNotFoundException()
68          throws Exception
69      {
70          // toto.titi means foo.bar in French :-)
71          SerializerFactory.createNewSerializer( "toto.titi" );
72      }
73  }