Search in sources :

Example 26 with Person

use of org.apache.dubbo.common.serialize.model.Person in project dubbo by apache.

the class AbstractSerializationPersonFailTest method test_PersonListList.

@Test
public void test_PersonListList() throws Exception {
    List<List<Person>> args = new ArrayList<List<Person>>();
    List<Person> sublist = new ArrayList<Person>();
    sublist.add(new Person());
    args.add(sublist);
    try {
        ObjectOutput objectOutput = serialization.serialize(url, byteArrayOutputStream);
        objectOutput.writeObject(args);
        fail();
    } catch (NotSerializableException expected) {
    } catch (IllegalStateException expected) {
        assertThat(expected.getMessage(), containsString(FAIL_STRING));
    }
}
Also used : NotSerializableException(java.io.NotSerializableException) ObjectOutput(org.apache.dubbo.common.serialize.ObjectOutput) ArrayList(java.util.ArrayList) ArrayList(java.util.ArrayList) List(java.util.List) Person(org.apache.dubbo.common.serialize.model.Person) Test(org.junit.jupiter.api.Test)

Example 27 with Person

use of org.apache.dubbo.common.serialize.model.Person in project dubbo by apache.

the class AbstractSerializationPersonFailTest method test_PersonList.

@Test
public void test_PersonList() throws Exception {
    List<Person> args = new ArrayList<Person>();
    args.add(new Person());
    try {
        ObjectOutput objectOutput = serialization.serialize(url, byteArrayOutputStream);
        objectOutput.writeObject(args);
        fail();
    } catch (NotSerializableException expected) {
    } catch (IllegalStateException expected) {
        assertThat(expected.getMessage(), containsString(FAIL_STRING));
    }
}
Also used : NotSerializableException(java.io.NotSerializableException) ObjectOutput(org.apache.dubbo.common.serialize.ObjectOutput) ArrayList(java.util.ArrayList) Person(org.apache.dubbo.common.serialize.model.Person) Test(org.junit.jupiter.api.Test)

Example 28 with Person

use of org.apache.dubbo.common.serialize.model.Person in project dubbo by apache.

the class FastJsonObjectInputTest method testReadObjectWithTowType.

@Test
public void testReadObjectWithTowType() throws Exception {
    fastJsonObjectInput = new FastJsonObjectInput(new StringReader("[{\"name\":\"John\",\"age\":30},{\"name\":\"Born\",\"age\":24}]"));
    Method methodReturnType = getClass().getMethod("towLayer");
    Type type = methodReturnType.getGenericReturnType();
    List<Person> o = fastJsonObjectInput.readObject(List.class, type);
    assertTrue(o instanceof List);
    assertTrue(o.get(0) instanceof Person);
    assertThat(o.size(), is(2));
    assertThat(o.get(1).getName(), is("Born"));
}
Also used : Type(java.lang.reflect.Type) StringReader(java.io.StringReader) List(java.util.List) Method(java.lang.reflect.Method) Person(org.apache.dubbo.common.serialize.model.Person) Test(org.junit.jupiter.api.Test)

Example 29 with Person

use of org.apache.dubbo.common.serialize.model.Person in project dubbo-spi-extensions by apache.

the class FastJsonObjectInputTest method testReadObject.

@Test
public void testReadObject() throws IOException, ClassNotFoundException {
    fastJsonObjectInput = new FastJsonObjectInput(new StringReader("{ \"name\":\"John\", \"age\":30 }"));
    Person result = fastJsonObjectInput.readObject(Person.class);
    assertThat(result, not(nullValue()));
    assertThat(result.getName(), is("John"));
    assertThat(result.getAge(), is(30));
}
Also used : StringReader(java.io.StringReader) Person(org.apache.dubbo.common.serialize.model.Person) Test(org.junit.jupiter.api.Test)

Example 30 with Person

use of org.apache.dubbo.common.serialize.model.Person in project dubbo-spi-extensions by apache.

the class FastJsonObjectInputTest method testReadObjectWithTowType.

@Test
public void testReadObjectWithTowType() throws Exception {
    fastJsonObjectInput = new FastJsonObjectInput(new StringReader("[{\"name\":\"John\",\"age\":30},{\"name\":\"Born\",\"age\":24}]"));
    Method methodReturnType = getClass().getMethod("towLayer");
    Type type = methodReturnType.getGenericReturnType();
    List<Person> o = fastJsonObjectInput.readObject(List.class, type);
    assertTrue(o instanceof List);
    assertTrue(o.get(0) instanceof Person);
    assertThat(o.size(), is(2));
    assertThat(o.get(1).getName(), is("Born"));
}
Also used : Type(java.lang.reflect.Type) StringReader(java.io.StringReader) List(java.util.List) Method(java.lang.reflect.Method) Person(org.apache.dubbo.common.serialize.model.Person) Test(org.junit.jupiter.api.Test)

Aggregations

Person (org.apache.dubbo.common.serialize.model.Person)36 Test (org.junit.jupiter.api.Test)36 NotSerializableException (java.io.NotSerializableException)21 ObjectOutput (org.apache.dubbo.common.serialize.ObjectOutput)21 List (java.util.List)10 StringReader (java.io.StringReader)9 Method (java.lang.reflect.Method)6 Type (java.lang.reflect.Type)6 ArrayList (java.util.ArrayList)6 HashMap (java.util.HashMap)6 Matchers.containsString (org.hamcrest.Matchers.containsString)6 Organization (org.apache.dubbo.common.serialize.model.Organization)3 HashSet (java.util.HashSet)2