summaryrefslogtreecommitdiffstats
path: root/sandbox/event/modules/binding-gdata-runtime-gsoc/src/test/java/org/apache/tuscany/sca/binding/gdata/ConsumerProviderTestCase.java
blob: 3ac79e5f0a6115db0fb79359e1b8ae59f8f00900 (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
/*
 * 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.sca.binding.gdata;

import junit.framework.TestCase;
import org.apache.tuscany.sca.host.embedded.SCADomain;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import com.google.gdata.data.Entry;
import com.google.gdata.data.Feed;
import com.google.gdata.data.PlainTextConstruct;

public class ConsumerProviderTestCase extends TestCase {

    private SCADomain scaDomainProvider = null;
    private SCADomain scaDomainConsumer = null;
    private CustomerClient testService = null;

    @Before
    @Override
    public void setUp() throws Exception {
        System.out.println("Method Test Start-----------------------------------------------------------------------");

        // Setup the local GData servlet (Service Binding test)
        scaDomainProvider = SCADomain.newInstance("org/apache/tuscany/sca/binding/gdata/Provider.composite");
        System.out.println("[Debug Info] Provider.composite ready...");

        // Initialize the GData client service (Reference Binding test)
        scaDomainConsumer = SCADomain.newInstance("org/apache/tuscany/sca/binding/gdata/Consumer.composite");
        testService = scaDomainConsumer.getService(CustomerClient.class, "CustomerClient");
    }

    @After
    @Override
    public void tearDown() {
        scaDomainProvider.close();
        System.out.println("Method Test End------------------------------------------------------------------------");
        System.out.println("\n\n");
    }
    
        
    @Test
    public void testClientGetFeed() throws Exception {
        Feed feed = testService.clientGetFeed();
        System.out.println(feed.getTitle().getPlainText());
        assertNotNull(feed);
        // Given we are testing on the localhost providing feed, we know the
        // feed title is "Feedtitle(LocalHostServlet)"
        assertEquals("Feedtitle(LocalHostServlet)", feed.getTitle().getPlainText());
    }

    @Test
    public void testClientGetEntry() throws Exception {
        String entryID = "urn:uuid:customer-0";
        Entry entry = testService.clientGetEntry(entryID);
        System.out.println("entryID in testcase: " + entry.getId());
        assertEquals(entryID, entry.getId());
    }

    @Test
    public void testClientPost() throws Exception {
        Entry newEntry = new Entry();
        newEntry.setTitle(new PlainTextConstruct("NewEntry title by Post"));
        newEntry.setContent(new PlainTextConstruct("NewEntry Content by Post"));        
        Entry postedEntry = testService.clientPost(newEntry);        
        assertEquals("NewEntry title by Post", postedEntry.getTitle().getPlainText());
    }
    
  
    
    @Test
    public void testClientPut() throws Exception {
        String newTitleValue = "newTitleValueByPut";
        String entryID = "urn:uuid:customer-0";
        System.out.println("Before clientPut");
        testService.clientPut(entryID, newTitleValue);
        System.out.println("After clientPut");
        Entry updatedEntry = testService.clientGetEntry(entryID);
        System.out.println("title: "+ updatedEntry.getTitle().getPlainText());
        assertEquals(newTitleValue, updatedEntry.getTitle().getPlainText());
    }
    


    @Test
    public void testClientDelete() throws Exception {

        // We first create a new entry, then delete it

        // Post a new entry
        Entry newEntry = new Entry();
        newEntry.setTitle(new PlainTextConstruct("NewEntry title to be deleted"));
        newEntry.setContent(new PlainTextConstruct("NewEntry Content to be delted"));
        Entry confirmedNewEntry = testService.clientPost(newEntry);

        Thread.sleep(300);
       
        Feed feed00 = testService.clientGetFeed();
        int entryNum00 = feed00.getEntries().size(); // The number of entries
                                                        // before deleting
        System.out.println("entryNum00:" + entryNum00);
                
        // Delete this newly created entry
        String entryID = confirmedNewEntry.getId();
        Thread.sleep(300);
        
        System.out.println("confirmed entry ID: " + confirmedNewEntry.getId());
        System.out.println("confirmed entry title: " + confirmedNewEntry.getTitle().getPlainText());
        
        System.out.println("Before test clientDelete");
        testService.clientDelete(entryID);
        System.out.println("After test clientDelete");
        
        Feed feed01 = testService.clientGetFeed();
        int entryNum01 = feed01.getEntries().size();
        System.out.println("entryNum01:" + entryNum01); // The number of entries after deleting
        
        //assertEquals(1, entryNum00 - entryNum01);
    }
    

}