Search in sources :

Example 6 with CouchbaseMetadataProcessor

use of org.teiid.translator.couchbase.CouchbaseMetadataProcessor in project teiid by teiid.

the class TestCouchbaseMetadataProcessor method testCustomerWithDuplicatedTypedName.

@Test
public void testCustomerWithDuplicatedTypedName() throws ResourceException {
    CouchbaseMetadataProcessor mp = new CouchbaseMetadataProcessor();
    mp.setTypeNameList("`test`:`type`,`test2`:`type`");
    MetadataFactory mf = new MetadataFactory("vdb", 1, "couchbase", SystemMetadata.getInstance().getRuntimeTypeMap(), new Properties(), null);
    String typedName = "Customer";
    String keyspace1 = "test";
    String keyspace2 = "test2";
    Table table1 = createTable(mf, keyspace1, typedName);
    mp.scanRow("test", KEYSPACE_SOURCE, formCustomer(), mf, table1, table1.getName(), false, new Dimension());
    Table table2 = createTable(mf, keyspace2, typedName);
    mp.scanRow("test2", "`test2`", formCustomer(), mf, table2, table2.getName(), false, new Dimension());
    helpTest("customerDuplicatedTypedName.expected", mf);
}
Also used : Table(org.teiid.metadata.Table) MetadataFactory(org.teiid.metadata.MetadataFactory) CouchbaseMetadataProcessor(org.teiid.translator.couchbase.CouchbaseMetadataProcessor) Dimension(org.teiid.translator.couchbase.CouchbaseMetadataProcessor.Dimension) CouchbaseProperties(org.teiid.translator.couchbase.CouchbaseProperties) Properties(java.util.Properties) Test(org.junit.Test)

Example 7 with CouchbaseMetadataProcessor

use of org.teiid.translator.couchbase.CouchbaseMetadataProcessor in project teiid by teiid.

the class TestCouchbaseMetadataProcessor method testNestedJsonWithTypedName.

@Test
public void testNestedJsonWithTypedName() throws ResourceException {
    CouchbaseMetadataProcessor mp = new CouchbaseMetadataProcessor();
    MetadataFactory mf = new MetadataFactory("vdb", 1, "couchbase", SystemMetadata.getInstance().getRuntimeTypeMap(), new Properties(), null);
    Table table = createTable(mf, KEYSPACE, "Sample");
    mp.scanRow(KEYSPACE, KEYSPACE_SOURCE, nestedJson(), mf, table, "Sample", false, new Dimension());
    helpTest("nestedJsonTypedName.expected", mf);
}
Also used : Table(org.teiid.metadata.Table) MetadataFactory(org.teiid.metadata.MetadataFactory) CouchbaseMetadataProcessor(org.teiid.translator.couchbase.CouchbaseMetadataProcessor) Dimension(org.teiid.translator.couchbase.CouchbaseMetadataProcessor.Dimension) CouchbaseProperties(org.teiid.translator.couchbase.CouchbaseProperties) Properties(java.util.Properties) Test(org.junit.Test)

Example 8 with CouchbaseMetadataProcessor

use of org.teiid.translator.couchbase.CouchbaseMetadataProcessor in project teiid by teiid.

the class TestCouchbaseMetadataProcessor method testMoreTypedNameInOneKeyspace.

@Test
public void testMoreTypedNameInOneKeyspace() throws ResourceException {
    CouchbaseMetadataProcessor mp = new CouchbaseMetadataProcessor();
    mp.setTypeNameList("`test`:`type`,`test`:`name`,`test`:`category`");
    MetadataFactory mf = new MetadataFactory("vdb", 1, "couchbase", SystemMetadata.getInstance().getRuntimeTypeMap(), new Properties(), null);
    Table ea = createTable(mf, KEYSPACE, "name", "ExampleA");
    mp.scanRow("test", KEYSPACE_SOURCE, JsonObject.create().put("name", "ExampleA"), mf, ea, ea.getName(), false, new Dimension());
    Table eb = createTable(mf, KEYSPACE, "name", "ExampleB");
    mp.scanRow("test", KEYSPACE_SOURCE, JsonObject.create().put("name", "ExampleB"), mf, eb, eb.getName(), false, new Dimension());
    Table sa = createTable(mf, KEYSPACE, "type", "SampleA");
    mp.scanRow("test", KEYSPACE_SOURCE, JsonObject.create().put("type", "SampleA"), mf, sa, sa.getName(), false, new Dimension());
    Table sb = createTable(mf, KEYSPACE, "type", "SampleB");
    mp.scanRow("test", KEYSPACE_SOURCE, JsonObject.create().put("type", "SampleB"), mf, sb, sb.getName(), false, new Dimension());
    Table qa = createTable(mf, KEYSPACE, "category", "QuickstartA");
    mp.scanRow("test", KEYSPACE_SOURCE, JsonObject.create().put("category", "QuickstartA"), mf, qa, qa.getName(), false, new Dimension());
    Table qb = createTable(mf, KEYSPACE, "type", "QuickstartB");
    mp.scanRow("test", KEYSPACE_SOURCE, JsonObject.create().put("type", "QuickstartB").put("name", "SampleC").put("category", "ExampleC"), mf, qb, qb.getName(), false, new Dimension());
    helpTest("moreTypedNameInOneKeyspace.expected", mf);
}
Also used : Table(org.teiid.metadata.Table) MetadataFactory(org.teiid.metadata.MetadataFactory) CouchbaseMetadataProcessor(org.teiid.translator.couchbase.CouchbaseMetadataProcessor) Dimension(org.teiid.translator.couchbase.CouchbaseMetadataProcessor.Dimension) CouchbaseProperties(org.teiid.translator.couchbase.CouchbaseProperties) Properties(java.util.Properties) Test(org.junit.Test)

Example 9 with CouchbaseMetadataProcessor

use of org.teiid.translator.couchbase.CouchbaseMetadataProcessor in project teiid by teiid.

the class TestCouchbaseMetadataProcessor method testNestedJson.

@Test
public void testNestedJson() throws ResourceException {
    CouchbaseMetadataProcessor mp = new CouchbaseMetadataProcessor();
    MetadataFactory mf = new MetadataFactory("vdb", 1, "couchbase", SystemMetadata.getInstance().getRuntimeTypeMap(), new Properties(), null);
    Table table = createTable(mf, KEYSPACE, KEYSPACE);
    mp.scanRow(KEYSPACE, KEYSPACE_SOURCE, nestedJson(), mf, table, KEYSPACE, false, new Dimension());
    helpTest("nestedJson.expected", mf);
}
Also used : Table(org.teiid.metadata.Table) MetadataFactory(org.teiid.metadata.MetadataFactory) CouchbaseMetadataProcessor(org.teiid.translator.couchbase.CouchbaseMetadataProcessor) Dimension(org.teiid.translator.couchbase.CouchbaseMetadataProcessor.Dimension) CouchbaseProperties(org.teiid.translator.couchbase.CouchbaseProperties) Properties(java.util.Properties) Test(org.junit.Test)

Example 10 with CouchbaseMetadataProcessor

use of org.teiid.translator.couchbase.CouchbaseMetadataProcessor in project teiid by teiid.

the class TestCouchbaseMetadataProcessor method testDataType.

@Test
public void testDataType() throws ResourceException {
    /* 10 potential types: String, Integer, Long, Double, Boolean, BigInteger, BigDecimal, JsonObject, JsonArray, null */
    CouchbaseMetadataProcessor mp = new CouchbaseMetadataProcessor();
    MetadataFactory mf = new MetadataFactory("vdb", 1, "couchbase", SystemMetadata.getInstance().getRuntimeTypeMap(), new Properties(), null);
    Table table = createTable(mf, KEYSPACE, KEYSPACE);
    mp.scanRow(KEYSPACE, KEYSPACE_SOURCE, formDataTypeJson(), mf, table, KEYSPACE, false, new Dimension());
    helpTest("dataTypeJson.expected", mf);
}
Also used : Table(org.teiid.metadata.Table) MetadataFactory(org.teiid.metadata.MetadataFactory) CouchbaseMetadataProcessor(org.teiid.translator.couchbase.CouchbaseMetadataProcessor) Dimension(org.teiid.translator.couchbase.CouchbaseMetadataProcessor.Dimension) CouchbaseProperties(org.teiid.translator.couchbase.CouchbaseProperties) Properties(java.util.Properties) Test(org.junit.Test)

Aggregations

Properties (java.util.Properties)14 Test (org.junit.Test)14 MetadataFactory (org.teiid.metadata.MetadataFactory)14 CouchbaseMetadataProcessor (org.teiid.translator.couchbase.CouchbaseMetadataProcessor)14 CouchbaseProperties (org.teiid.translator.couchbase.CouchbaseProperties)14 Table (org.teiid.metadata.Table)13 Dimension (org.teiid.translator.couchbase.CouchbaseMetadataProcessor.Dimension)13 JsonObject (com.couchbase.client.java.document.json.JsonObject)1 Ignore (org.junit.Ignore)1