~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to local/vn/dhis-web-hue-reporttool/src/test/java/org/hisp/dhis/rt/ReportStoreTest.java

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hisp.dhis.rt;
 
2
 
 
3
/*
 
4
 * Copyright (c) 2004-2007, University of Oslo
 
5
 * All rights reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions are met:
 
9
 * * Redistributions of source code must retain the above copyright notice, this
 
10
 *   list of conditions and the following disclaimer.
 
11
 * * Redistributions in binary form must reproduce the above copyright notice,
 
12
 *   this list of conditions and the following disclaimer in the documentation
 
13
 *   and/or other materials provided with the distribution.
 
14
 * * Neither the name of the HISP project nor the names of its contributors may
 
15
 *   be used to endorse or promote products derived from this software without
 
16
 *   specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
20
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
21
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 
22
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
23
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
24
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 
25
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
27
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
 */
 
29
 
 
30
import org.hisp.dhis.DhisSpringTest;
 
31
import org.hisp.dhis.dataelement.DataElement;
 
32
import org.hisp.dhis.dataelement.DataElementService;
 
33
import org.hisp.dhis.rt.report.ReportStore;
 
34
 
 
35
public class ReportStoreTest
 
36
    extends DhisSpringTest
 
37
{
 
38
    private final String reportName = "NeverUsedTestReport";
 
39
        
 
40
    private ReportStore reportStore;
 
41
    
 
42
    private DataElementService dataElementService;
 
43
    
 
44
    public void setUpTest() throws Exception
 
45
    {
 
46
        reportStore = (ReportStore) getBean( ReportStore.ID );
 
47
        
 
48
        dataElementService = (DataElementService) getBean( DataElementService.ID );
 
49
    }
 
50
 
 
51
    public void testReportStore() throws Exception
 
52
    {
 
53
        DataElement dataElement1 = new DataElement(
 
54
            "name1", "shortName1", "description", true, DataElement.TYPE_INT, DataElement.AGGREGATION_OPERATOR_SUM, null );
 
55
        int dataElementId1 = dataElementService.addDataElement( dataElement1 );
 
56
        
 
57
        DataElement dataElement2 = new DataElement(
 
58
            "name2", "shortName2", "description", true, DataElement.TYPE_INT, DataElement.AGGREGATION_OPERATOR_SUM, null );
 
59
        int dataElementId2 = dataElementService.addDataElement( dataElement2 );
 
60
        
 
61
        DataElement dataElement3 = new DataElement(
 
62
            "name3", "shortName3", "description", true, DataElement.TYPE_INT, DataElement.AGGREGATION_OPERATOR_SUM, null );
 
63
        int dataElementId3 = dataElementService.addDataElement( dataElement3 );
 
64
        
 
65
        /*
 
66
        reportStore.addReport( reportName, ReportStore.GENERIC );        
 
67
 
 
68
        //Collection reports = reportStore.getAllReports();
 
69
        //assertTrue( reports.size() == 1 );
 
70
        
 
71
        reportStore.addReportElement( reportName, ReportStore.DATAELEMENT, dataElementId1 );
 
72
        reportStore.addReportElement( reportName, ReportStore.DATAELEMENT, dataElementId2 );
 
73
        reportStore.addReportElement( reportName, ReportStore.DATAELEMENT, dataElementId3 );
 
74
        
 
75
        assertTrue( reportStore.getAllReportElements( reportName ).size() == 3 );
 
76
        
 
77
        reportStore.removeReportElement( reportName, ReportStore.DATAELEMENT + ":" + dataElementId3 );
 
78
 
 
79
        assertTrue( reportStore.getAllReportElements( reportName ).size() == 2 );
 
80
        
 
81
        reportStore.addChartElement( reportName, ReportStore.DATAELEMENT, dataElementId1 );
 
82
        reportStore.addChartElement( reportName, ReportStore.DATAELEMENT, dataElementId2 );
 
83
        reportStore.addChartElement( reportName, ReportStore.DATAELEMENT, dataElementId3 );
 
84
        
 
85
        assertTrue( reportStore.getAllChartElements( reportName ).size() == 3 );
 
86
        
 
87
        reportStore.removeChartElement( reportName, ReportStore.DATAELEMENT + ":" + dataElementId3 );
 
88
        
 
89
        assertTrue( reportStore.getAllChartElements( reportName ).size() == 2 );
 
90
        
 
91
        reportStore.setDesignTemplate( reportName, 1 );
 
92
        
 
93
        assertTrue( reportStore.getDesignTemplate( reportName ) == 1 );
 
94
        
 
95
        reportStore.setChartTemplate( reportName, 2 );
 
96
        
 
97
        assertTrue( reportStore.getChartTemplate( reportName ) == 2 );
 
98
        
 
99
        assertTrue( reportStore.deleteReport( reportName ) );
 
100
        */
 
101
    }
 
102
}