Skip to content
Snippets Groups Projects
Commit b7190ad7 authored by tpylak's avatar tpylak
Browse files

LMS-770 System tests for browsing material, sample and experiment types

SVN: 10045
parent e0367e08
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ import com.google.gwt.junit.tools.GWTTestSuite;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.AuthenticationTest;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.AuthorizationManagementConsolTest;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.DataSetSearchTest;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.EntityTypeBrowserTest;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.EntityTypePropertyTypeAssignmentTest;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ExperimentBrowserTest;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.MaterialBrowserTest;
......@@ -67,6 +68,7 @@ public class SystemTestSuite extends GWTTestSuite
testSuite.addTestSuite(PropertyTypeRegistrationTest.class);
testSuite.addTestSuite(GenericExperimentAttachmentDownloadTest.class);
testSuite.addTestSuite(ProjectRegistrationTest.class);
testSuite.addTestSuite(EntityTypeBrowserTest.class);
return testSuite;
}
}
/*
* Copyright 2008 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.openbis.generic.client.web.client.application;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.framework.CategoriesBuilder.MenuCategoryKind;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.framework.CategoriesBuilder.MenuElementKind;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.columns.specific.EntityTypeColDefKind;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.experiment.ExperimentTypeGrid;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.material.MaterialTypeGrid;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.sample.SampleTypeGrid;
import ch.systemsx.cisd.openbis.generic.client.web.client.testframework.AbstractGWTTestCase;
import ch.systemsx.cisd.openbis.generic.client.web.client.testframework.CheckTableCommand;
import ch.systemsx.cisd.openbis.generic.client.web.client.testframework.Row;
/**
* Tests for sample type, material type and experiment type browsers.
*
* @author Tomasz Pylak
*/
public class EntityTypeBrowserTest extends AbstractGWTTestCase
{
public final void testListMaterialTypes()
{
loginAndGotoTab(MenuCategoryKind.MATERIALS, MenuElementKind.BROWSE_TYPES);
CheckTableCommand table =
new CheckTableCommand(MaterialTypeGrid.GRID_ID,
MaterialTypeGrid.ListEntitiesCallback.class);
checkGridRows(table, "BACTERIUM", 7);
}
public final void testListSampleTypes()
{
loginAndGotoTab(MenuCategoryKind.SAMPLES, MenuElementKind.BROWSE_TYPES);
CheckTableCommand table =
new CheckTableCommand(SampleTypeGrid.GRID_ID,
SampleTypeGrid.ListEntitiesCallback.class);
checkGridRows(table, "WELL", 6);
}
public final void testListExperimentTypes()
{
loginAndGotoTab(MenuCategoryKind.EXPERIMENTS, MenuElementKind.BROWSE_TYPES);
CheckTableCommand table =
new CheckTableCommand(ExperimentTypeGrid.GRID_ID,
ExperimentTypeGrid.ListEntitiesCallback.class);
checkGridRows(table, "SIRNA_HCS", 2);
}
private void checkGridRows(CheckTableCommand table, String expectedCode, int expectedRowsNum)
{
table.expectedRow(new Row().withCell(EntityTypeColDefKind.CODE.id(), expectedCode));
remoteConsole.prepare(table.expectedSize(expectedRowsNum));
launchTest(20000);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment