package org.activityinfo.legacy.shared.command; /* * #%L * ActivityInfo Server * %% * Copyright (C) 2009 - 2013 UNICEF * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. * #L% */ import org.activityinfo.fixtures.InjectionSupport; import org.activityinfo.fixtures.Modules; import org.activityinfo.legacy.shared.command.result.AttributeGroupResult; import org.activityinfo.legacy.shared.exception.CommandException; import org.activityinfo.server.command.CommandTestCase2; import org.activityinfo.server.database.OnDataSet; import org.activityinfo.server.database.TestDatabaseModule; import org.junit.Test; import org.junit.runner.RunWith; import java.util.Arrays; import static org.hamcrest.CoreMatchers.equalTo; import static org.junit.Assert.assertThat; @RunWith(InjectionSupport.class) @Modules({TestDatabaseModule.class}) public class GetAttributeGroupsDimensionHandlerTest extends CommandTestCase2 { // all @Test @OnDataSet("/dbunit/sites-simple1.db.xml") public void testEmptyFilter() throws CommandException { AttributeGroupResult result = this.execute(); assertThat(result.getData().size(), equalTo(0)); } // data entry filter population query @Test @OnDataSet("/dbunit/sites-simple1.db.xml") public void testActivity() throws CommandException { AttributeGroupResult result = execute(DimensionType.Activity, 1); assertThat(result.getData().size(), equalTo(1)); assertThat(result.getData().get(0).getName(), equalTo("cause")); } // report filter population queries @Test @OnDataSet("/dbunit/sites-simple1.db.xml") public void testIndicatorEmpty() throws CommandException { // empty AttributeGroupResult result = execute(DimensionType.Indicator, 103, 675, 5, 6); assertThat(result.getData().size(), equalTo(0)); } @Test @OnDataSet("/dbunit/sites-simple1.db.xml") public void testIndicatorValue() throws CommandException { // cause AttributeGroupResult result = execute(DimensionType.Indicator, 1, 2); assertThat(result.getData().size(), equalTo(1)); assertThat(result.getData().get(0).getName(), equalTo("cause")); } @Test @OnDataSet("/dbunit/sites-linked.db.xml") public void testIndicatorLinked100() throws CommandException { // empty AttributeGroupResult result = execute(DimensionType.Indicator, 100); assertThat(result.getData().size(), equalTo(0)); } @Test @OnDataSet("/dbunit/sites-linked.db.xml") public void testIndicatorLinked1() throws CommandException { // cause, contenu du kit AttributeGroupResult result = execute(DimensionType.Indicator, 1); assertThat(result.getData().size(), equalTo(2)); assertThat(result.getData().get(0).getName(), equalTo("cause")); assertThat(result.getData().get(1).getName(), equalTo("contenu du kit")); } @Test @OnDataSet("/dbunit/sites-linked.db.xml") public void testIndicatorLinked2() throws CommandException { // cause AttributeGroupResult result = execute(DimensionType.Indicator, 2); assertThat(result.getData().size(), equalTo(1)); assertThat(result.getData().get(0).getName(), equalTo("cause")); } @Test @OnDataSet("/dbunit/sites-linked.db.xml") public void testIndicatorLinked12100() throws CommandException { // cause, contenu du kit AttributeGroupResult result = execute(DimensionType.Indicator, 1, 2, 100); assertThat(result.getData().size(), equalTo(2)); assertThat(result.getData().get(0).getName(), equalTo("cause")); assertThat(result.getData().get(1).getName(), equalTo("contenu du kit")); } private AttributeGroupResult execute() { return this.execute(null, (Integer[]) null); } private AttributeGroupResult execute(DimensionType type, Integer... params) { setUser(1); Filter filter = new Filter(); if (type != null) { filter.addRestriction(type, Arrays.asList(params)); } return execute(new GetAttributeGroupsDimension(filter)); } }