vtk-m2/vtkm/cont/testing/UnitTestMultiBlock.cxx
2017-08-04 16:39:36 -04:00

123 lines
5.0 KiB
C++

//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
// This software is distributed WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the above copyright notice for more information.
//
// Copyright 2014 Sandia Corporation.
// Copyright 2014 UT-Battelle, LLC.
// Copyright 2014 Los Alamos National Security.
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National
// Laboratory (LANL), the U.S. Government retains certain rights in
// this software.
//============================================================================
#include <vtkm/CellShape.h>
#include <vtkm/Bounds.h>
#include <vtkm/VectorAnalysis.h>
#include <vtkm/cont/ArrayHandle.h>
#include <vtkm/cont/CellSetStructured.h>
#include <vtkm/cont/DataSet.h>
#include <vtkm/cont/DataSetFieldAdd.h>
#include <vtkm/cont/DynamicArrayHandle.h>
#include <vtkm/cont/Field.h>
#include <vtkm/cont/MultiBlock.h>
#include <vtkm/cont/serial/DeviceAdapterSerial.h>
#include <vtkm/cont/testing/MakeTestDataSet.h>
#include <vtkm/cont/testing/Testing.h>
#include <vtkm/exec/ConnectivityStructured.h>
static void MultiBlockTest()
{
vtkm::cont::testing::MakeTestDataSet testDataSet;
vtkm::cont::MultiBlock multiblock;
vtkm::cont::DataSet TDset1 = testDataSet.Make2DUniformDataSet0();
vtkm::cont::DataSet TDset2 = testDataSet.Make3DUniformDataSet0();
multiblock.AddBlock(TDset1);
multiblock.AddBlock(TDset2);
VTKM_TEST_ASSERT(multiblock.GetNumberOfBlocks() == 2, "Incorrect number of blocks");
vtkm::cont::DataSet TestDSet = multiblock.GetBlock(0);
VTKM_TEST_ASSERT(TDset1.GetNumberOfFields() == TestDSet.GetNumberOfFields(),
"Incorrect number of fields");
VTKM_TEST_ASSERT(TDset1.GetNumberOfCoordinateSystems() == TestDSet.GetNumberOfCoordinateSystems(),
"Incorrect number of coordinate systems");
TestDSet = multiblock.GetBlock(1);
VTKM_TEST_ASSERT(TDset2.GetNumberOfFields() == TestDSet.GetNumberOfFields(),
"Incorrect number of fields");
VTKM_TEST_ASSERT(TDset2.GetNumberOfCoordinateSystems() == TestDSet.GetNumberOfCoordinateSystems(),
"Incorrect number of coordinate systems");
vtkm::Bounds Set1Bounds = TDset1.GetCoordinateSystem(0).GetBounds();
vtkm::Bounds Set2Bounds = TDset2.GetCoordinateSystem(0).GetBounds();
vtkm::Bounds GlobalBound;
GlobalBound.Include(Set1Bounds);
GlobalBound.Include(Set2Bounds);
VTKM_TEST_ASSERT(multiblock.GetBounds() == GlobalBound, "Global bounds info incorrect");
VTKM_TEST_ASSERT(multiblock.GetBlockBounds(0) == Set1Bounds, "Local bounds info incorrect");
VTKM_TEST_ASSERT(multiblock.GetBlockBounds(1) == Set2Bounds, "Local bounds info incorrect");
vtkm::Range Set1Field1Range;
vtkm::Range Set1Field2Range;
vtkm::Range Set2Field1Range;
vtkm::Range Set2Field2Range;
vtkm::Range Field1GlobeRange;
vtkm::Range Field2GlobeRange;
TDset1.GetField("pointvar").GetRange(&Set1Field1Range);
TDset1.GetField("cellvar").GetRange(&Set1Field2Range);
TDset2.GetField("pointvar").GetRange(&Set2Field1Range);
TDset2.GetField("cellvar").GetRange(&Set2Field2Range);
Field1GlobeRange.Include(Set1Field1Range);
Field1GlobeRange.Include(Set2Field1Range);
Field2GlobeRange.Include(Set1Field2Range);
Field2GlobeRange.Include(Set2Field2Range);
VTKM_TEST_ASSERT(multiblock.GetGlobalRange("pointvar").GetPortalControl().Get(0) ==
Field1GlobeRange,
"Local field value range info incorrect");
VTKM_TEST_ASSERT(multiblock.GetGlobalRange("cellvar").GetPortalControl().Get(0) ==
Field2GlobeRange,
"Local field value range info incorrect");
TDset1.GetField(0).GetRange(&Set1Field1Range);
TDset1.GetField(1).GetRange(&Set1Field2Range);
TDset2.GetField(0).GetRange(&Set2Field1Range);
TDset2.GetField(1).GetRange(&Set2Field2Range);
Field1GlobeRange.Include(Set1Field1Range);
Field1GlobeRange.Include(Set2Field1Range);
Field2GlobeRange.Include(Set1Field2Range);
Field2GlobeRange.Include(Set2Field2Range);
VTKM_TEST_ASSERT(multiblock.GetGlobalRange(0).GetPortalControl().Get(0) == Field1GlobeRange,
"Local field value range info incorrect");
VTKM_TEST_ASSERT(multiblock.GetGlobalRange(1).GetPortalControl().Get(0) == Field2GlobeRange,
"Local field value range info incorrect");
vtkm::Range SourceRange; //test the validity of member function GetField(FieldName, BlockId)
multiblock.GetField("cellvar", 0).GetRange(&SourceRange);
vtkm::Range TestRange;
multiblock.GetBlock(0).GetField("cellvar").GetRange(&TestRange);
VTKM_TEST_ASSERT(TestRange == SourceRange, "Local field value info incorrect");
}
int UnitTestMultiBlock(int, char* [])
{
return vtkm::cont::testing::Testing::Run(MultiBlockTest);
}