blob: 32a8738399beec857f945de7add7d11cbaf56b42 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.johnzon.mapper;
import static org.junit.Assert.assertEquals;
import java.util.Objects;
import org.junit.Test;
public class RecordTest {
@Test
public void roundTrip() {
final Record ref = new Record(119, "Santa");
try (final Mapper mapper = new MapperBuilder().setAttributeOrder(String.CASE_INSENSITIVE_ORDER).build()) {
final String expectedJson = "{\"age\":119,\"name\":\"Santa\"}";
assertEquals(expectedJson, mapper.writeObjectAsString(ref));
assertEquals(ref, mapper.readObject(expectedJson, Record.class));
}
}
@JohnzonRecord
public static class Record {
private final int age;
private final String name;
public Record() { // simulate custom constructor
this.age = -1;
this.name = "failed";
}
public Record(final int age) { // simulate custom constructor
this.age = age;
this.name = "failed";
}
public Record(@JohnzonRecord.Name("age") final int age,
@JohnzonRecord.Name("name") final String name) {
this.age = age;
this.name = name;
}
@Override
public String toString() {
return "Record{" +
"age=" + age +
", name='" + name + '\'' +
'}';
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final Record record = Record.class.cast(o);
return age == record.age && Objects.equals(name, record.name);
}
@Override
public int hashCode() {
return Objects.hash(age, name);
}
}
}