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

« back to all changes in this revision

Viewing changes to dhis-2/dhis-services/dhis-service-reporting/src/test/java/org/hisp/dhis/report/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.report;
 
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 java.util.Collection;
 
31
import java.util.HashSet;
 
32
import java.util.Set;
 
33
 
 
34
import org.hisp.dhis.DhisSpringTest;
 
35
import org.hisp.dhis.reporttable.ReportTable;
 
36
import org.hisp.dhis.reporttable.ReportTableStore;
 
37
 
 
38
/**
 
39
 * @author Lars Helge Overland
 
40
 * @version $Id$
 
41
 */
 
42
public class ReportStoreTest
 
43
    extends DhisSpringTest
 
44
{
 
45
    private ReportStore reportStore;
 
46
    
 
47
    private ReportTableStore reportTableStore;
 
48
    
 
49
    private ReportTable reportTableA;
 
50
    
 
51
    private Set<ReportTable> reportTables;
 
52
 
 
53
    // -------------------------------------------------------------------------
 
54
    // Fixture
 
55
    // -------------------------------------------------------------------------
 
56
 
 
57
    public void setUpTest()
 
58
    {
 
59
        reportStore = (ReportStore) getBean( ReportStore.ID );
 
60
        
 
61
        reportTableStore = (ReportTableStore) getBean( ReportTableStore.ID );
 
62
        
 
63
        reportTableA = new ReportTable( "ReportTableA", "ReportTableA" );
 
64
 
 
65
        reportTables = new HashSet<ReportTable>();
 
66
        reportTables.add( reportTableA );
 
67
        
 
68
        reportTableStore.saveReportTable( reportTableA );
 
69
    }
 
70
 
 
71
    // -------------------------------------------------------------------------
 
72
    // Tests
 
73
    // -------------------------------------------------------------------------
 
74
 
 
75
    public void testSaveGet()
 
76
    {
 
77
        Report reportA = new Report( "ReportA", "DesignA", reportTables );
 
78
        Report reportB = new Report( "ReportB", "DesignB", reportTables );
 
79
        
 
80
        int idA = reportStore.saveReport( reportA );
 
81
        int idB = reportStore.saveReport( reportB );
 
82
        
 
83
        assertEquals( reportA, reportStore.getReport( idA ) );
 
84
        assertEquals( reportB, reportStore.getReport( idB ) );
 
85
    }
 
86
    
 
87
    public void testSaveGetUpdate()
 
88
    {
 
89
        Report reportA = new Report( "ReportA", "DesignA", reportTables );
 
90
        Report reportB = new Report( "ReportB", "DesignB", reportTables );
 
91
        
 
92
        int idA = reportStore.saveReport( reportA );
 
93
        int idB = reportStore.saveReport( reportB );
 
94
        
 
95
        assertEquals( reportA, reportStore.getReport( idA ) );
 
96
        assertEquals( reportB, reportStore.getReport( idB ) );
 
97
        
 
98
        reportA.setDesign( "UpdatedDesignA" );
 
99
        reportB.setDesign( "UpdatedDesignB" );
 
100
        
 
101
        int updatedIdA = reportStore.saveReport( reportA );
 
102
        int updatedIdB = reportStore.saveReport( reportB );
 
103
        
 
104
        assertEquals( idA, updatedIdA );
 
105
        assertEquals( idB, updatedIdB );
 
106
        
 
107
        assertEquals( "UpdatedDesignA", reportStore.getReport( updatedIdA ).getDesign() );
 
108
        assertEquals( "UpdatedDesignB", reportStore.getReport( updatedIdB ).getDesign() );
 
109
    }
 
110
    
 
111
    public void testDelete()
 
112
    {
 
113
        Report reportA = new Report( "ReportA", "DesignA", reportTables );
 
114
        Report reportB = new Report( "ReportB", "DesignB", reportTables );
 
115
        
 
116
        int idA = reportStore.saveReport( reportA );
 
117
        int idB = reportStore.saveReport( reportB );
 
118
        
 
119
        assertNotNull( reportStore.getReport( idA ) );
 
120
        assertNotNull( reportStore.getReport( idB ) );
 
121
        
 
122
        reportStore.deleteReport( reportA );
 
123
 
 
124
        assertNull( reportStore.getReport( idA ) );
 
125
        assertNotNull( reportStore.getReport( idB ) );
 
126
 
 
127
        reportStore.deleteReport( reportB );
 
128
 
 
129
        assertNull( reportStore.getReport( idA ) );
 
130
        assertNull( reportStore.getReport( idB ) );
 
131
    }
 
132
    
 
133
    public void testGetAll()
 
134
    {
 
135
        Report reportA = new Report( "ReportA", "DesignA", reportTables );
 
136
        Report reportB = new Report( "ReportB", "DesignB", reportTables );
 
137
        
 
138
        reportStore.saveReport( reportA );
 
139
        reportStore.saveReport( reportB );
 
140
        
 
141
        Collection<Report> reports = reportStore.getAllReports();
 
142
        
 
143
        assertNotNull( reports );
 
144
        assertEquals( 2, reports.size() );
 
145
        assertTrue( reports.contains( reportA ) );
 
146
        assertTrue( reports.contains( reportB ) );        
 
147
    }
 
148
}