← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 22225: wip, add testing of tracker objects in new dxf2 importer

 

------------------------------------------------------------
revno: 22225
committer: Morten Olav Hansen <morten@xxxxxxxxx>
branch nick: dhis2
timestamp: Thu 2016-03-10 14:49:05 +0700
message:
  wip, add testing of tracker objects in new dxf2 importer
added:
  dhis-2/dhis-services/dhis-service-dxf2/src/test/java/org/hisp/dhis/dxf2/metadata2/objectbundle/ObjectBundleServiceProgramTest.java
  dhis-2/dhis-services/dhis-service-dxf2/src/test/resources/dxf2/program_noreg.json


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== added file 'dhis-2/dhis-services/dhis-service-dxf2/src/test/java/org/hisp/dhis/dxf2/metadata2/objectbundle/ObjectBundleServiceProgramTest.java'
--- dhis-2/dhis-services/dhis-service-dxf2/src/test/java/org/hisp/dhis/dxf2/metadata2/objectbundle/ObjectBundleServiceProgramTest.java	1970-01-01 00:00:00 +0000
+++ dhis-2/dhis-services/dhis-service-dxf2/src/test/java/org/hisp/dhis/dxf2/metadata2/objectbundle/ObjectBundleServiceProgramTest.java	2016-03-10 07:49:05 +0000
@@ -0,0 +1,111 @@
+package org.hisp.dhis.dxf2.metadata2.objectbundle;
+
+/*
+ * Copyright (c) 2004-2016, University of Oslo
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * Redistributions of source code must retain the above copyright notice, this
+ * list of conditions and the following disclaimer.
+ *
+ * Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following disclaimer in the documentation
+ * and/or other materials provided with the distribution.
+ * Neither the name of the HISP project nor the names of its contributors may
+ * be used to endorse or promote products derived from this software without
+ * specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+import org.hisp.dhis.DhisSpringTest;
+import org.hisp.dhis.common.IdentifiableObject;
+import org.hisp.dhis.common.IdentifiableObjectManager;
+import org.hisp.dhis.dataelement.DataElement;
+import org.hisp.dhis.dataset.DataSet;
+import org.hisp.dhis.importexport.ImportStrategy;
+import org.hisp.dhis.organisationunit.OrganisationUnit;
+import org.hisp.dhis.program.Program;
+import org.hisp.dhis.program.ProgramStage;
+import org.hisp.dhis.render.RenderFormat;
+import org.hisp.dhis.render.RenderService;
+import org.hisp.dhis.user.User;
+import org.hisp.dhis.user.UserAuthorityGroup;
+import org.hisp.dhis.validation.ValidationRule;
+import org.junit.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.core.io.ClassPathResource;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.Map;
+
+import static org.junit.Assert.*;
+
+/**
+ * @author Morten Olav Hansen <mortenoh@xxxxxxxxx>
+ */
+public class ObjectBundleServiceProgramTest
+    extends DhisSpringTest
+{
+    @Autowired
+    private ObjectBundleService objectBundleService;
+
+    @Autowired
+    private IdentifiableObjectManager manager;
+
+    @Autowired
+    private RenderService _renderService;
+
+    @Override
+    protected void setUpTest() throws Exception
+    {
+        renderService = _renderService;
+    }
+
+    @Test
+    public void testCreateSimpleProgramNoReg() throws IOException
+    {
+        Map<Class<? extends IdentifiableObject>, List<IdentifiableObject>> metadata = renderService.fromMetadata(
+            new ClassPathResource( "dxf2/program_noreg.json" ).getInputStream(), RenderFormat.JSON );
+
+        ObjectBundleParams params = new ObjectBundleParams();
+        params.setObjectBundleMode( ObjectBundleMode.COMMIT );
+        params.setImportMode( ImportStrategy.CREATE );
+        params.setObjects( metadata );
+
+        ObjectBundle bundle = objectBundleService.create( params );
+        ObjectBundleValidation validate = objectBundleService.validate( bundle );
+        assertTrue( validate.getObjectErrorReportsMap().isEmpty() );
+
+        objectBundleService.commit( bundle );
+
+        List<DataSet> dataSets = manager.getAll( DataSet.class );
+        List<OrganisationUnit> organisationUnits = manager.getAll( OrganisationUnit.class );
+        List<DataElement> dataElements = manager.getAll( DataElement.class );
+        List<UserAuthorityGroup> userRoles = manager.getAll( UserAuthorityGroup.class );
+        List<User> users = manager.getAll( User.class );
+        List<ValidationRule> validationRules = manager.getAll( ValidationRule.class );
+        List<Program> programs = manager.getAll( Program.class );
+        List<ProgramStage> programStages = manager.getAll( ProgramStage.class );
+
+        assertFalse( dataSets.isEmpty() );
+        assertFalse( organisationUnits.isEmpty() );
+        assertFalse( dataElements.isEmpty() );
+        assertFalse( users.isEmpty() );
+        assertFalse( userRoles.isEmpty() );
+        assertEquals( 1, validationRules.size() );
+        assertEquals( 1, programs.size() );
+        assertEquals( 1, programStages.size() );
+    }
+}
\ No newline at end of file

=== added file 'dhis-2/dhis-services/dhis-service-dxf2/src/test/resources/dxf2/program_noreg.json'
--- dhis-2/dhis-services/dhis-service-dxf2/src/test/resources/dxf2/program_noreg.json	1970-01-01 00:00:00 +0000
+++ dhis-2/dhis-services/dhis-service-dxf2/src/test/resources/dxf2/program_noreg.json	2016-03-10 07:49:05 +0000
@@ -0,0 +1,582 @@
+{
+  "categoryOptions": [
+    {
+      "publicAccess": "--------",
+      "organisationUnits": [ ],
+      "created": "2016-03-10T04:59:27.872+0000",
+      "attributeValues": [ ],
+      "shortName": "default",
+      "userGroupAccesses": [ ],
+      "name": "default",
+      "lastUpdated": "2016-03-10T04:59:27.887+0000",
+      "id": "SCLqnaPwVHY"
+    }
+  ],
+  "categories": [
+    {
+      "name": "default",
+      "lastUpdated": "2016-03-10T07:21:09.711+0000",
+      "categoryOptions": [
+        {
+          "id": "SCLqnaPwVHY"
+        }
+      ],
+      "id": "f66ygHaFS1v",
+      "publicAccess": "--------",
+      "dataDimensionType": "DISAGGREGATION",
+      "dataDimension": true,
+      "created": "2016-03-10T04:59:27.881+0000",
+      "userGroupAccesses": [ ]
+    }
+  ],
+  "organisationUnitLevels": [
+    {
+      "created": "2016-03-10T05:01:14.581+0000",
+      "id": "fMEk5rewunw",
+      "level": 1,
+      "name": "Level 1",
+      "lastUpdated": "2016-03-10T05:01:14.582+0000"
+    }
+  ],
+  "programs": [
+    {
+      "shortName": "ProgramShortA",
+      "organisationUnits": [
+        {
+          "id": "SR705r4KVRu"
+        }
+      ],
+      "attributeValues": [ ],
+      "programStages": [
+        {
+          "id": "agYrfZeYx1b"
+        }
+      ],
+      "dataEntryMethod": false,
+      "validationCriterias": [ ],
+      "ignoreOverdueEvents": false,
+      "displayFrontPageList": false,
+      "enrollmentDateLabel": "Enrollment Date",
+      "programType": "WITHOUT_REGISTRATION",
+      "skipOffline": false,
+      "displayIncidentDate": false,
+      "userGroupAccesses": [ ],
+      "created": "2016-03-10T07:27:15.681+0000",
+      "categoryCombo": {
+        "id": "SI0XITt9Oh4"
+      },
+      "programTrackedEntityAttributes": [ ],
+      "publicAccess": "rw------",
+      "selectEnrollmentDatesInFuture": false,
+      "onlyEnrollOnce": false,
+      "version": 1,
+      "id": "s5uvS0Q7jnX",
+      "incidentDateLabel": "Incident Date",
+      "user": {
+        "id": "ZK1wkC59FCw"
+      },
+      "selectIncidentDatesInFuture": false,
+      "lastUpdated": "2016-03-10T07:27:24.600+0000",
+      "name": "ProgramA",
+      "trackedEntityInstanceReminders": [ ]
+    }
+  ],
+  "trackedEntityAttributes": [
+    {
+      "searchScope": "SEARCH_ORG_UNITS",
+      "confidential": false,
+      "unique": false,
+      "displayOnVisitSchedule": false,
+      "displayInListNoProgram": false,
+      "shortName": "TrackedEntityAttributeA",
+      "attributeValues": [ ],
+      "lastUpdated": "2016-03-10T07:26:32.131+0000",
+      "user": {
+        "id": "ZK1wkC59FCw"
+      },
+      "inherit": false,
+      "name": "TrackedEntityAttributeA",
+      "id": "CXsesjOaSzr",
+      "programScope": false,
+      "publicAccess": "rw------",
+      "orgunitScope": false,
+      "userGroupAccesses": [ ],
+      "valueType": "TEXT",
+      "created": "2016-03-10T07:25:57.406+0000"
+    }
+  ],
+  "validationRules": [
+    {
+      "rightSide": {
+        "missingValueStrategy": "SKIP_IF_ANY_VALUE_MISSING",
+        "description": "Right Side",
+        "expression": "#{X0ypiOyoDbw.NQigT2ThzgD}",
+        "dataElements": [
+          {
+            "id": "X0ypiOyoDbw"
+          }
+        ]
+      },
+      "created": "2016-03-10T05:09:40.688+0000",
+      "operator": "equal_to",
+      "importance": "MEDIUM",
+      "description": "ValidationRuleA",
+      "leftSide": {
+        "dataElements": [
+          {
+            "id": "jocQSivF2ry"
+          }
+        ],
+        "expression": "#{jocQSivF2ry.NQigT2ThzgD}",
+        "description": "Left Side",
+        "missingValueStrategy": "SKIP_IF_ANY_VALUE_MISSING"
+      },
+      "periodType": "Monthly",
+      "id": "ztzsVjSIWg7",
+      "lastUpdated": "2016-03-10T05:09:40.689+0000",
+      "ruleType": "VALIDATION",
+      "name": "ValidationRuleA"
+    }
+  ],
+  "categoryOptionCombos": [
+    {
+      "lastUpdated": "2016-03-10T04:59:27.884+0000",
+      "name": "default",
+      "id": "NQigT2ThzgD",
+      "categoryOptions": [
+        {
+          "id": "SCLqnaPwVHY"
+        }
+      ],
+      "created": "2016-03-10T04:59:27.884+0000",
+      "categoryCombo": {
+        "id": "SI0XITt9Oh4"
+      },
+      "ignoreApproval": false
+    }
+  ],
+  "categoryCombos": [
+    {
+      "userGroupAccesses": [ ],
+      "dataDimensionType": "DISAGGREGATION",
+      "created": "2016-03-10T04:59:27.883+0000",
+      "publicAccess": "--------",
+      "id": "SI0XITt9Oh4",
+      "lastUpdated": "2016-03-10T04:59:27.886+0000",
+      "skipTotal": false,
+      "name": "default",
+      "categories": [
+        {
+          "id": "f66ygHaFS1v"
+        }
+      ]
+    }
+  ],
+  "dataElements": [
+    {
+      "description": "DataElementDescriptionA",
+      "shortName": "DataElementShortA",
+      "attributeValues": [ ],
+      "user": {
+        "id": "ZK1wkC59FCw"
+      },
+      "lastUpdated": "2016-03-10T05:02:18.871+0000",
+      "code": "DataElementCodeA",
+      "name": "DataElementA",
+      "aggregationLevels": [ ],
+      "aggregationType": "SUM",
+      "id": "jocQSivF2ry",
+      "publicAccess": "rw------",
+      "zeroIsSignificant": false,
+      "userGroupAccesses": [ ],
+      "valueType": "NUMBER",
+      "categoryCombo": {
+        "id": "SI0XITt9Oh4"
+      },
+      "created": "2016-03-10T05:02:18.868+0000",
+      "domainType": "AGGREGATE"
+    },
+    {
+      "name": "DataElementB",
+      "code": "DataElementCodeB",
+      "user": {
+        "id": "ZK1wkC59FCw"
+      },
+      "lastUpdated": "2016-03-10T05:02:47.024+0000",
+      "id": "X0ypiOyoDbw",
+      "aggregationType": "SUM",
+      "aggregationLevels": [ ],
+      "zeroIsSignificant": false,
+      "publicAccess": "rw------",
+      "domainType": "AGGREGATE",
+      "created": "2016-03-10T05:02:47.023+0000",
+      "categoryCombo": {
+        "id": "SI0XITt9Oh4"
+      },
+      "valueType": "NUMBER",
+      "userGroupAccesses": [ ],
+      "description": "DataElementDescriptionB",
+      "attributeValues": [ ],
+      "shortName": "DataElementShortB"
+    },
+    {
+      "lastUpdated": "2016-03-10T05:04:44.334+0000",
+      "user": {
+        "id": "ZK1wkC59FCw"
+      },
+      "name": "DataElementC",
+      "code": "DataElementCodeC",
+      "aggregationLevels": [ ],
+      "id": "vAczVs4mxna",
+      "aggregationType": "SUM",
+      "publicAccess": "rw------",
+      "zeroIsSignificant": false,
+      "valueType": "NUMBER",
+      "userGroupAccesses": [ ],
+      "domainType": "AGGREGATE",
+      "categoryCombo": {
+        "id": "SI0XITt9Oh4"
+      },
+      "created": "2016-03-10T05:04:44.329+0000",
+      "description": "DataElementDescriptionC",
+      "shortName": "DataElementShortC",
+      "attributeValues": [ ]
+    },
+    {
+      "shortName": "DataElementShortD",
+      "attributeValues": [ ],
+      "aggregationLevels": [ ],
+      "id": "jSmlTqYWkor",
+      "aggregationType": "SUM",
+      "user": {
+        "id": "ZK1wkC59FCw"
+      },
+      "lastUpdated": "2016-03-10T07:23:43.938+0000",
+      "name": "DataElementD",
+      "code": "DataElementCodeD",
+      "valueType": "NUMBER",
+      "userGroupAccesses": [ ],
+      "domainType": "TRACKER",
+      "categoryCombo": {
+        "id": "SI0XITt9Oh4"
+      },
+      "created": "2016-03-10T07:23:43.925+0000",
+      "publicAccess": "rw------",
+      "zeroIsSignificant": false
+    },
+    {
+      "domainType": "TRACKER",
+      "categoryCombo": {
+        "id": "SI0XITt9Oh4"
+      },
+      "created": "2016-03-10T07:24:06.159+0000",
+      "valueType": "NUMBER",
+      "userGroupAccesses": [ ],
+      "zeroIsSignificant": false,
+      "publicAccess": "rw------",
+      "id": "HLRGJHHgfxc",
+      "aggregationType": "SUM",
+      "aggregationLevels": [ ],
+      "name": "DataElementE",
+      "code": "DataElementCodeE",
+      "lastUpdated": "2016-03-10T07:24:06.161+0000",
+      "user": {
+        "id": "ZK1wkC59FCw"
+      },
+      "attributeValues": [ ],
+      "shortName": "DataElementShortE"
+    },
+    {
+      "id": "xbww2KLuHnZ",
+      "aggregationType": "SUM",
+      "aggregationLevels": [ ],
+      "name": "DataElementF",
+      "code": "DataElementCodeF",
+      "user": {
+        "id": "ZK1wkC59FCw"
+      },
+      "lastUpdated": "2016-03-10T07:24:23.660+0000",
+      "domainType": "TRACKER",
+      "categoryCombo": {
+        "id": "SI0XITt9Oh4"
+      },
+      "created": "2016-03-10T07:24:23.658+0000",
+      "valueType": "NUMBER",
+      "userGroupAccesses": [ ],
+      "zeroIsSignificant": false,
+      "publicAccess": "rw------",
+      "attributeValues": [ ],
+      "shortName": "DataElementShortF"
+    }
+  ],
+  "trackedEntityAttributeGroups": [
+    {
+      "trackedEntityAttributes": [
+        {
+          "id": "CXsesjOaSzr"
+        }
+      ],
+      "name": "TrackedEntityAttributeGroupA",
+      "lastUpdated": "2016-03-10T07:26:43.665+0000",
+      "created": "2016-03-10T07:26:43.664+0000",
+      "id": "VUd5jP8cbjQ",
+      "description": "TrackedEntityAttributeGroupA"
+    }
+  ],
+  "users": [
+    {
+      "lastUpdated": "2016-03-10T05:01:28.993+0000",
+      "surname": "admin",
+      "firstName": "admin",
+      "dataViewOrganisationUnits": [ ],
+      "id": "ZK1wkC59FCw",
+      "organisationUnits": [
+        {
+          "id": "SR705r4KVRu"
+        }
+      ],
+      "teiSearchOrganisationUnits": [ ],
+      "userCredentials": {
+        "selfRegistered": false,
+        "externalAuth": false,
+        "invitation": false,
+        "cogsDimensionConstraints": [ ],
+        "created": "2016-03-10T05:00:11.882+0000",
+        "username": "admin",
+        "disabled": false,
+        "passwordLastUpdated": "2016-03-10T05:00:11.791+0000",
+        "userInfo": {
+          "id": "ZK1wkC59FCw"
+        },
+        "catDimensionConstraints": [ ],
+        "lastLogin": "2016-03-10T05:00:11.791+0000",
+        "user": {
+          "id": "ZK1wkC59FCw"
+        },
+        "userRoles": [
+          {
+            "id": "VIkpd2KHCb1"
+          }
+        ]
+      },
+      "attributeValues": [ ],
+      "created": "2016-03-10T05:00:11.766+0000"
+    }
+  ],
+  "userRoles": [
+    {
+      "created": "2016-03-10T05:00:11.778+0000",
+      "authorities": [
+        "F_TRACKED_ENTITY_INSTANCE_SEARCH_IN_ALL_ORGUNITS",
+        "ALL",
+        "F_USERGROUP_MANAGING_RELATIONSHIPS_ADD",
+        "F_REPORTTABLE_PUBLIC_ADD",
+        "F_TRACKED_ENTITY_INSTANCE_DELETE",
+        "F_USER_GROUPS_READ_ONLY_ADD_MEMBERS",
+        "F_MAP_PUBLIC_ADD",
+        "F_USER_ADD_WITHIN_MANAGED_GROUP",
+        "F_TRACKED_ENTITY_INSTANCE_SEARCH",
+        "F_PROGRAM_ENROLLMENT",
+        "F_REPORTTABLE_EXTERNAL",
+        "F_SQLVIEW_EXTERNAL",
+        "F_GIS_ADMIN",
+        "F_REPLICATE_USER",
+        "F_INSERT_CUSTOM_JS_CSS",
+        "F_DASHBOARD_PUBLIC_ADD",
+        "F_METADATA_IMPORT",
+        "F_CHART_PUBLIC_ADD",
+        "F_VIEW_UNAPPROVED_DATA",
+        "F_CHART_EXTERNAL",
+        "F_USERGROUP_MANAGING_RELATIONSHIPS_VIEW",
+        "F_METADATA_EXPORT",
+        "F_PROGRAM_UNENROLLMENT",
+        "F_APPROVE_DATA",
+        "F_ACCEPT_DATA_LOWER_LEVELS",
+        "F_TRACKED_ENTITY_INSTANCE_ADD",
+        "F_USERGROUP_PUBLIC_ADD",
+        "F_OAUTH2_CLIENT_MANAGE",
+        "F_TRACKED_ENTITY_DATAVALUE_ADD",
+        "F_PROGRAM_DASHBOARD_CONFIG_ADMIN",
+        "F_MAP_EXTERNAL",
+        "F_APPROVE_DATA_LOWER_LEVELS",
+        "F_TRACKED_ENTITY_DATAVALUE_DELETE"
+      ],
+      "userGroupAccesses": [ ],
+      "dataSets": [ ],
+      "programs": [ ],
+      "publicAccess": "--------",
+      "id": "VIkpd2KHCb1",
+      "name": "Superuser",
+      "lastUpdated": "2016-03-10T05:00:11.778+0000"
+    }
+  ],
+  "programStageDataElements": [
+    {
+      "id": "gANqBDSSNu2",
+      "allowProvidedElsewhere": false,
+      "compulsory": false,
+      "dataElement": {
+        "id": "xbww2KLuHnZ"
+      },
+      "allowFutureDate": false,
+      "lastUpdated": "2016-03-10T07:27:58.733+0000",
+      "displayInReports": true,
+      "programStage": {
+        "id": "agYrfZeYx1b"
+      },
+      "created": "2016-03-10T07:27:58.733+0000",
+      "sortOrder": 2
+    },
+    {
+      "sortOrder": 1,
+      "programStage": {
+        "id": "agYrfZeYx1b"
+      },
+      "created": "2016-03-10T07:27:58.726+0000",
+      "displayInReports": false,
+      "lastUpdated": "2016-03-10T07:27:58.727+0000",
+      "allowFutureDate": false,
+      "dataElement": {
+        "id": "HLRGJHHgfxc"
+      },
+      "compulsory": false,
+      "allowProvidedElsewhere": true,
+      "id": "x7wLneg4rTZ"
+    },
+    {
+      "sortOrder": 0,
+      "programStage": {
+        "id": "agYrfZeYx1b"
+      },
+      "created": "2016-03-10T07:27:58.718+0000",
+      "id": "vOdNoOX7l10",
+      "allowProvidedElsewhere": false,
+      "allowFutureDate": false,
+      "dataElement": {
+        "id": "jSmlTqYWkor"
+      },
+      "compulsory": true,
+      "lastUpdated": "2016-03-10T07:27:58.719+0000",
+      "displayInReports": false
+    }
+  ],
+  "organisationUnits": [
+    {
+      "path": "/SR705r4KVRu",
+      "created": "2016-03-10T05:01:10.702+0000",
+      "attributeValues": [ ],
+      "shortName": "Country",
+      "name": "Country",
+      "uuid": "b8b03f02-6a01-4786-9343-937692400cec",
+      "openingDate": "2016-03-10",
+      "user": {
+        "id": "ZK1wkC59FCw"
+      },
+      "lastUpdated": "2016-03-10T05:01:10.717+0000",
+      "id": "SR705r4KVRu",
+      "featureType": "NONE",
+      "description": ""
+    }
+  ],
+  "date": "2016-03-10T07:29:50.921+0000",
+  "trackedEntities": [
+    {
+      "name": "Person",
+      "lastUpdated": "2016-03-10T07:21:10.000+0000",
+      "attributeValues": [ ],
+      "created": "2016-03-10T07:21:10.000+0000",
+      "id": "uh6tOHZTlG0",
+      "description": "Person"
+    }
+  ],
+  "programStages": [
+    {
+      "allowGenerateNextVisit": false,
+      "openAfterEnrollment": false,
+      "created": "2016-03-10T07:27:15.692+0000",
+      "displayGenerateEventBox": false,
+      "programStageSections": [ ],
+      "trackedEntityInstanceReminders": [ ],
+      "name": "ProgramA",
+      "hideDueDate": false,
+      "lastUpdated": "2016-03-10T07:27:58.736+0000",
+      "id": "agYrfZeYx1b",
+      "captureCoordinates": false,
+      "program": {
+        "id": "s5uvS0Q7jnX"
+      },
+      "remindCompleted": false,
+      "excecutionDateLabel": "Report date",
+      "attributeValues": [ ],
+      "programStageDataElements": [
+        {
+          "id": "vOdNoOX7l10"
+        },
+        {
+          "id": "x7wLneg4rTZ"
+        },
+        {
+          "id": "gANqBDSSNu2"
+        }
+      ],
+      "generatedByEnrollmentDate": false,
+      "validCompleteOnly": false,
+      "minDaysFromStart": 0,
+      "blockEntryForm": false,
+      "autoGenerateEvent": true,
+      "preGenerateUID": false,
+      "repeatable": false
+    }
+  ],
+  "dataSets": [
+    {
+      "created": "2016-03-10T05:05:10.398+0000",
+      "categoryCombo": {
+        "id": "SI0XITt9Oh4"
+      },
+      "dataElementDecoration": false,
+      "userGroupAccesses": [ ],
+      "mobile": false,
+      "skipOffline": false,
+      "publicAccess": "rw------",
+      "id": "NGblLqp6Cyu",
+      "version": 1,
+      "notifyCompletingUser": false,
+      "periodType": "Monthly",
+      "indicators": [ ],
+      "code": "DataSetCodeA",
+      "name": "DataSetA",
+      "expiryDays": 0,
+      "compulsoryDataElementOperands": [ ],
+      "user": {
+        "id": "ZK1wkC59FCw"
+      },
+      "renderAsTabs": false,
+      "lastUpdated": "2016-03-10T05:05:15.994+0000",
+      "attributeValues": [ ],
+      "organisationUnits": [
+        {
+          "id": "SR705r4KVRu"
+        }
+      ],
+      "timelyDays": 15,
+      "fieldCombinationRequired": false,
+      "shortName": "DataSetShortA",
+      "noValueRequiresComment": false,
+      "openFuturePeriods": 0,
+      "renderHorizontally": false,
+      "validCompleteOnly": false,
+      "dataElements": [
+        {
+          "id": "jocQSivF2ry"
+        },
+        {
+          "id": "X0ypiOyoDbw"
+        },
+        {
+          "id": "vAczVs4mxna"
+        }
+      ]
+    }
+  ]
+}