Search in sources :

Example 1 with SimpleContentInstance

use of org.whole.lang.xsd.mapping.samples.SimpleContentInstance in project whole by wholeplatform.

the class XsdMappingTest method testSimpleContent.

// Requires an Internet connection
// FIXME remove KnownFailingTests
@Category({ SlowTests.class, KnownFailingTests.class })
@Test
public void testSimpleContent() throws Exception {
    InputStream is = loader.getResourceAsStream("simpleContent.xsd");
    StreamSource ss = new StreamSource(is);
    Schema schema = factory.newSchema(ss);
    is = loader.getResourceAsStream("simpleContent.xml");
    Validator v = schema.newValidator();
    v.validate(new StreamSource(is));
    is = loader.getResourceAsStream("simpleContent.xml");
    IPersistenceProvider pp = new StreamPersistenceProvider(is);
    pp.getBindings().wDefValue("packageName", "org.whole.lang.xsd.mapping.samples");
    IEntity model = XsiPersistenceKit.instance().readModel(pp);
    Assert.assertTrue(Matcher.match(new SimpleContentInstance().create(), model));
}
Also used : SimpleContentInstance(org.whole.lang.xsd.mapping.samples.SimpleContentInstance) IEntity(org.whole.lang.model.IEntity) InputStream(java.io.InputStream) StreamSource(javax.xml.transform.stream.StreamSource) Schema(javax.xml.validation.Schema) IPersistenceProvider(org.whole.lang.codebase.IPersistenceProvider) StreamPersistenceProvider(org.whole.lang.codebase.StreamPersistenceProvider) Validator(javax.xml.validation.Validator) Category(org.junit.experimental.categories.Category) Test(org.junit.Test)

Aggregations

InputStream (java.io.InputStream)1 StreamSource (javax.xml.transform.stream.StreamSource)1 Schema (javax.xml.validation.Schema)1 Validator (javax.xml.validation.Validator)1 Test (org.junit.Test)1 Category (org.junit.experimental.categories.Category)1 IPersistenceProvider (org.whole.lang.codebase.IPersistenceProvider)1 StreamPersistenceProvider (org.whole.lang.codebase.StreamPersistenceProvider)1 IEntity (org.whole.lang.model.IEntity)1 SimpleContentInstance (org.whole.lang.xsd.mapping.samples.SimpleContentInstance)1