summaryrefslogtreecommitdiffstats
path: root/sandbox/axis2-1.4/itest/osgi-tuscany/test-bundles/src/main/java/supplychain/client/SupplyChainClient.java
blob: bb9dfdb35502bc153d03e65896edb3799341ef3b (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
package supplychain.client;


import java.io.File;
import java.net.URL;
import java.util.Hashtable;


import org.apache.tuscany.sca.assembly.Composite;
import org.apache.tuscany.sca.contribution.Contribution;
import org.apache.tuscany.sca.contribution.service.ContributionService;
import org.apache.tuscany.sca.host.embedded.impl.EmbeddedSCADomain;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;



import supplychain.customer.Customer;

/**
 * SupplyChain test client
 */
public class SupplyChainClient implements BundleActivator {

    private EmbeddedSCADomain scaDomain;
    private Customer customer;
    
    

    public void start(BundleContext context) throws Exception {
        
        context.registerService(SupplyChainClient.class.getName(), this, new Hashtable());
        
    }

    public void stop(BundleContext context) throws Exception {
        
    }

    protected void setUp(String contributionJarName) throws Exception {
        
        scaDomain = new EmbeddedSCADomain(EmbeddedSCADomain.class.getClassLoader(), "http://localhost");
        scaDomain.start();
        ContributionService contributionService = scaDomain.getContributionService();
        String folderName = "../test-bundles/target/"; 
        String supplychainJarName = contributionJarName;
        URL supplyChainURL = new File(folderName + supplychainJarName).toURI().toURL();
        
        Contribution contribution = contributionService.contribute("SupplyChain", supplyChainURL, false);
        for (Composite deployable : contribution.getDeployables() ) {
            scaDomain.getDomainComposite().getIncludes().add(deployable);
            scaDomain.buildComposite(deployable);
        }
        
        for (Composite deployable : contribution.getDeployables() ) {
            scaDomain.getCompositeActivator().activate(deployable);
            scaDomain.getCompositeActivator().start(deployable);
        }
        customer = scaDomain.getService(Customer.class, "CustomerComponent");
    }
    
    protected void tearDown() throws Exception {
        if (scaDomain != null) {
            scaDomain.close();
            scaDomain = null;
        }
    }


    public void runTest(String contributionJarName) throws Exception {
        
        try {
            setUp(contributionJarName);
            customer.purchaseGoods();
            int retries = 10;
            int outstandingCount = 1;
            while (retries-- > 0) {

                outstandingCount = customer.outstandingOrderCount();
                if (outstandingCount == 0)
                    break;
                else
                    Thread.sleep(100);
            }
            if (outstandingCount != 0)
                throw new RuntimeException("Orders not processed on time");
            
        } finally {
            
            tearDown();
        }    
        
        
    }
    
    
}