summaryrefslogtreecommitdiffstats
path: root/java/sca-contrib/itest/admin/src/test/java/org/apache/tuscany/sca/itest/admin/MySimpleServiceInRecursiveTestCase.java
blob: bcf41530644372fbb58fd5ec6728c9f4653b5a00 (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
package org.apache.tuscany.sca.itest.admin;

import static junit.framework.Assert.assertEquals;

import org.apache.tuscany.sca.itest.admin.MyService;
import org.apache.tuscany.sca.host.embedded.SCADomain;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;



public class MySimpleServiceInRecursiveTestCase
{
    private static MyService myServiceOrg;
    private static MyService myServiceAnother;
    private static MyService myServiceCary;

    private static SCADomain domain;

    
    @Test
    public void testPropertyDefault()
    {
        assertEquals("RTP",myServiceOrg.getLocation());
        assertEquals("2006",myServiceOrg.getYear());
    }

   
    @Test
    public void testPropertyOverrideValue()
    {
        assertEquals("CARY",myServiceCary.getLocation());
        assertEquals("2007",myServiceCary.getYear());
    }

   
    @Test
    public void testPropertyOverrideVariable()
    {
        assertEquals("Durham",myServiceAnother.getLocation());
        assertEquals("2009",myServiceAnother.getYear());
    }


    @BeforeClass
    public static void init() throws Exception {
        try {
        domain = SCADomain.newInstance("Iteration1Composite.composite");
        } catch ( Exception e ) { e.printStackTrace(); }
        
        myServiceOrg = domain.getService(MyService.class, "MySimpleServiceInRecursive/MyServiceOrig1");
        myServiceCary = domain.getService(MyService.class, "MySimpleServiceInRecursive/MyServiceCary1");
        myServiceAnother = domain.getService(MyService.class, "MySimpleServiceInRecursiveAnother/MyServiceNew1");
    }
	
	@AfterClass
    public static void destroy() throws Exception {
        domain.close();
    }
}