blob: 26e508a251cbe6d77fd14e2280155e10df5145f9 [file] [log] [blame]
/*
* Copyright (c) 2018, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Radek Felcman - 2.7.4 - initial implementation
package org.eclipse.persistence.testing.jaxb.json.type;
import org.eclipse.persistence.jaxb.JAXBContextProperties;
import org.eclipse.persistence.jaxb.MarshallerProperties;
import org.eclipse.persistence.jaxb.UnmarshallerProperties;
import org.eclipse.persistence.testing.jaxb.json.JSONMarshalUnmarshalTestCases;
import org.eclipse.persistence.testing.jaxb.json.type.model.*;
import jakarta.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Tests to marshall, unmarshal JSON with JSON_TYPE_ATTRIBUTE_NAME marshall and unmarshall property.
*
* @author Radek Felcman
*
*/
public class TypePropertyCustomNameTestCases extends JSONMarshalUnmarshalTestCases {
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/json/type/type_property_custom_name.json";
public TypePropertyCustomNameTestCases(String name) throws Exception {
super(name);
setClasses(new Class[]{PersonWithType.class, Contact.class});
setControlJSON(JSON_RESOURCE);
}
@Override
public void setUp() throws Exception{
super.setUp();
}
@Override
public Map getProperties() {
Map<String, Object> properties = new HashMap<String, Object>(3);
properties.put(JAXBContextProperties.JSON_INCLUDE_ROOT, false);
properties.put(JAXBContextProperties.JSON_TYPE_ATTRIBUTE_NAME, "mytype");
return properties;
}
public void testMarshallerProperty() throws Exception {
assertFalse((Boolean) jsonMarshaller.getProperty(MarshallerProperties.JSON_INCLUDE_ROOT));
assertEquals("mytype", jsonMarshaller.getProperty(MarshallerProperties.JSON_TYPE_ATTRIBUTE_NAME));
}
public void testUnmarshallerProperty() throws Exception {
assertFalse((Boolean) jsonUnmarshaller.getProperty(UnmarshallerProperties.JSON_INCLUDE_ROOT));
assertEquals("mytype", jsonUnmarshaller.getProperty(MarshallerProperties.JSON_TYPE_ATTRIBUTE_NAME));
}
@Override
protected Object getControlObject() {
Address a = new Address();
a.contactId = 1;
a.street = "Main Street 1";
a.city = "Prague";
a.zip = "110 00";
List<Contact> secondaryContacts = new ArrayList<>();
Address a1 = new Address();
a1.contactId = 2;
a1.street = "Under Bridge";
a1.city = "Berlin";
a1.zip = "123456";
secondaryContacts.add(a1);
Phone p = new Phone();
p.contactId = 3;
p.number = "987654321";
secondaryContacts.add(p);
Contact c = new Contact();
c.contactId = 4;
secondaryContacts.add(c);
CustomerWithInheritance customer = new CustomerWithInheritance();
customer.name = "theName";
customer.type = "propertyType";
customer.primaryContact = a;
customer.secondaryContacts = secondaryContacts;
QName name = new QName("");
JAXBElement<Object> jbe = new JAXBElement<Object>(name, Object.class, customer);
return jbe;
}
}