summaryrefslogtreecommitdiffstats
path: root/das-java/tags/1.0-incubator-M2/rdb/src/test/java/org/apache/tuscany/das/rdb/test/ConverterTests.java
blob: e8a4593602caf700bc86deef1546fb1dd3c2f187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
 * 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.tuscany.das.rdb.test;

import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

import org.apache.tuscany.das.rdb.Command;
import org.apache.tuscany.das.rdb.DAS;
import org.apache.tuscany.das.rdb.test.customer.Customer;
import org.apache.tuscany.das.rdb.test.customer.CustomerFactory;
import org.apache.tuscany.das.rdb.test.data.CustomerData;
import org.apache.tuscany.das.rdb.test.framework.DasTest;
import org.apache.tuscany.sdo.util.SDOUtil;

import commonj.sdo.DataObject;

/**
 * Tests the Converter framwork
 */
public class ConverterTests extends DasTest {

    private static DateFormat myformat = new SimpleDateFormat("yyyy.MM.dd");

    private static Date kbday;

    private static Date tbday;

    protected void setUp() throws Exception {
        super.setUp();
        new CustomerData(getAutoConnection()).refresh();
    }

    protected void tearDown() throws Exception {
        super.tearDown();
    }

    static {
        try {
            kbday = myformat.parse("1957.09.27");
            tbday = myformat.parse("1966.12.20");
        } catch (ParseException e) {
            throw new RuntimeException(e);
        }
    }

    /**
     * This tests the use of an arbitrary converter. The column 
     * converted is a VARCAHAR. ResultSetShape is used to specify 
     * that the property will be a
     * SDODataTypes.DATE.
     * 
     * So this example uses a converter that transforms a string column 
     * into a date property and conversely, a date property back to a string for the
     * underlying column.
     * 
     * The converter returns 1957.09.27 if the column value is "Williams" 
     * and 1966.12.20 if the value is "Pavick"
     * 
     * On write, the converter returns "Pavick" if the property value is 
     * 1966.12.20 and "Williams" if the property value is 1957.09.27
     * 
     */
    public void testArbitraryConverter() throws Exception {
        DAS das = DAS.FACTORY.createDAS(getConfig("CustomerConfigWithConverter.xml"), getConnection());

        // Create and initialize command to read customers
        Command read = das.getCommand("testArbitraryConverter");

        // Read
        DataObject root = read.executeQuery();

        // Verify
        assertEquals(kbday, root.getDate("CUSTOMER[1]/LASTNAME"));

        // Modify
        root.setDate("CUSTOMER[1]/LASTNAME", tbday);

        das.applyChanges(root);

        // Read
        root = read.executeQuery();

        // Verify
        assertEquals(tbday, root.getDate("CUSTOMER[1]/LASTNAME"));

    }

    public void testInvalidConverter1() throws Exception {

        DAS das = DAS.FACTORY.createDAS(getConfig("InvalidConverter.xml"), getConnection());

        // Build the select command to read a specific customer and related
        // orders
        Command select = das.createCommand("SELECT * FROM CUSTOMER LEFT JOIN ANORDER "
                + "ON CUSTOMER.ID = ANORDER.CUSTOMER_ID where CUSTOMER.ID = ?");

        // Parameterize the command
        select.setParameter(1, Integer.valueOf(1));

        // Get the graph
        try {
            select.executeQuery();
        } catch (Exception ex) {
            assertEquals("java.lang.ClassNotFoundException: not.a.valid.class", ex.getMessage());
        }

    }

    public void testInvalidConverter2() throws Exception {

        SDOUtil.registerStaticTypes(CustomerFactory.class);
        DAS das = DAS.FACTORY.createDAS(getConfig("InvalidConverter.xml"), getConnection());

        // Build the select command to read a specific customer and related
        // orders
        Command select = das.createCommand("SELECT * FROM ANORDER");

        // Get the graph

        DataObject root = select.executeQuery();
        DataObject order = root.getDataObject("AnOrder[1]");

        Customer customer = (Customer) root.createDataObject("Customer");
        customer.setID(700);
        customer.setLastName("Daniel");
        customer.setAddress("an address");

        customer.getOrders().add(order);

        try {
            das.applyChanges(root);
        } catch (Exception ex) {
            assertEquals("java.lang.ClassNotFoundException: not.a.valid.class", ex.getMessage());
        }

    }

}