View Javadoc

1   /*
2    * Grapht, an open source dependency injector.
3    * Copyright 2014-2015 various contributors (see CONTRIBUTORS.txt)
4    * Copyright 2010-2014 Regents of the University of Minnesota
5    *
6    * This program is free software; you can redistribute it and/or modify
7    * it under the terms of the GNU Lesser General Public License as
8    * published by the Free Software Foundation; either version 2.1 of the
9    * License, or (at your option) any later version.
10   *
11   * This program is distributed in the hope that it will be useful, but WITHOUT
12   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13   * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14   * details.
15   *
16   * You should have received a copy of the GNU General Public License along with
17   * this program; if not, write to the Free Software Foundation, Inc., 51
18   * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19   */
20  package org.grouplens.grapht.reflect.internal;
21  
22  import org.apache.commons.lang3.SerializationUtils;
23  import org.junit.Test;
24  
25  import javax.annotation.Nullable;
26  import java.io.IOException;
27  
28  import static org.hamcrest.Matchers.*;
29  import static org.junit.Assert.assertThat;
30  
31  public class FieldInjectionPointTest {
32      // a field to test serialization
33      String foo;
34      @Nullable
35      String nullable;
36  
37      @Test
38      public void testNotNullable() throws NoSuchFieldException {
39          FieldInjectionPoint nonnull = new FieldInjectionPoint(getClass().getDeclaredField("foo"));
40          assertThat(nonnull.isNullable(), equalTo(false));
41      }
42  
43      @Test
44      public void testNullable() throws NoSuchFieldException {
45          FieldInjectionPoint field = new FieldInjectionPoint(getClass().getDeclaredField("nullable"));
46          assertThat(field.isNullable(), equalTo(true));
47      }
48  
49      @Test
50      public void testSerialize() throws NoSuchFieldException, IOException, ClassNotFoundException {
51          FieldInjectionPoint fip = new FieldInjectionPoint(getClass().getDeclaredField("foo"));
52          FieldInjectionPoint fip2 = SerializationUtils.clone(fip);
53          assertThat(fip2, equalTo(fip));
54          assertThat(fip2, not(sameInstance(fip)));
55      }
56  }