1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*****************************************************************************
*
* Copyright (c) 2003-2020 by The University of Queensland
* http://www.uq.edu.au
*
* Primary Business: Queensland, Australia
* Licensed under the Apache License, version 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Development until 2012 by Earth Systems Science Computational Center (ESSCC)
* Development 2012-2013 by School of Earth Sciences
* Development from 2014-2017 by Centre for Geoscience Computing (GeoComp)
* Development from 2019 by School of Earth and Environmental Sciences
**
*****************************************************************************/
#include <escript/Data.h>
#include "DataFactoryTestCase.h"
#include <escript/DataFactory.h>
#include <cppunit/TestCaller.h>
#include <iostream>
using namespace CppUnit;
using namespace escript;
using namespace std;
void DataFactoryTestCase::testAll()
{
cout << endl;
cout << "\tUse DataFactory functions to create some Data objects:" << endl;
{
cout << "\tCreate Data (DataConstant) object with Scalar data points." << endl;
Data scalar=Scalar(1.3);
//cout << scalar.toString() << endl;
CPPUNIT_ASSERT(scalar.isConstant());
CPPUNIT_ASSERT(scalar.getDataPointRank()==0);
CPPUNIT_ASSERT(scalar.getDataPointShape().empty());
}
{
cout << "\tCreate DataExpanded object with Scalar data points." << endl;
Data scalar=Scalar(1.5,FunctionSpace(),true);
//cout << scalar.toString() << endl;
CPPUNIT_ASSERT(scalar.isExpanded());
CPPUNIT_ASSERT(scalar.getDataPointRank()==0);
CPPUNIT_ASSERT(scalar.getDataPointShape().empty());
}
{
cout << "\tCreate Data (DataConstant) object with Vector data points." << endl;
Data vector=Vector(1.3);
//cout << vector.toString() << endl;
CPPUNIT_ASSERT(vector.isConstant());
CPPUNIT_ASSERT(vector.getDataPointRank()==1);
CPPUNIT_ASSERT(vector.getDataPointShape()[0]==1);;
}
{
cout << "\tCreate Data Expanded object with Vector data points." << endl;
Data vector=Vector(1.5,FunctionSpace(),true);
//cout << vector.toString() << endl;
CPPUNIT_ASSERT(vector.isExpanded());
CPPUNIT_ASSERT(vector.getDataPointRank()==1);
CPPUNIT_ASSERT(vector.getDataPointShape()[0]==1);;
}
{
cout << "\tCreate Data (DataConstant) object with Tensor data points." << endl;
Data tensor=Tensor(1.3);
//cout << tensor.toString() << endl;
CPPUNIT_ASSERT(tensor.isConstant());
CPPUNIT_ASSERT(tensor.getDataPointRank()==2);
CPPUNIT_ASSERT(tensor.getDataPointShape()[0]==1);;
CPPUNIT_ASSERT(tensor.getDataPointShape()[1]==1);;
}
{
cout << "\tCreate Data Expanded object with Tensor data points." << endl;
Data tensor=Tensor(1.5,FunctionSpace(),true);
//cout << tensor.toString() << endl;
CPPUNIT_ASSERT(tensor.isExpanded());
CPPUNIT_ASSERT(tensor.getDataPointRank()==2);
CPPUNIT_ASSERT(tensor.getDataPointShape()[0]==1);;
CPPUNIT_ASSERT(tensor.getDataPointShape()[1]==1);;
}
{
cout << "\tCreate Data (DataConstant) object with Tensor3 data points." << endl;
Data tensor3=Tensor3(1.3);
//cout << tensor3.toString() << endl;
CPPUNIT_ASSERT(tensor3.isConstant());
CPPUNIT_ASSERT(tensor3.getDataPointRank()==3);
CPPUNIT_ASSERT(tensor3.getDataPointShape()[0]==1);;
CPPUNIT_ASSERT(tensor3.getDataPointShape()[1]==1);;
CPPUNIT_ASSERT(tensor3.getDataPointShape()[2]==1);;
}
{
cout << "\tCreate Data Expanded object with Tensor3 data points." << endl;
Data tensor3=Tensor3(1.5,FunctionSpace(),true);
//cout << tensor3.toString() << endl;
CPPUNIT_ASSERT(tensor3.isExpanded());
CPPUNIT_ASSERT(tensor3.getDataPointRank()==3);
CPPUNIT_ASSERT(tensor3.getDataPointShape()[0]==1);;
CPPUNIT_ASSERT(tensor3.getDataPointShape()[1]==1);;
CPPUNIT_ASSERT(tensor3.getDataPointShape()[2]==1);;
}
{
cout << "\tCreate Data (DataConstant) object with Tensor4 data points." << endl;
Data tensor4=Tensor4(1.3);
//cout << tensor4.toString() << endl;
CPPUNIT_ASSERT(tensor4.isConstant());
CPPUNIT_ASSERT(tensor4.getDataPointRank()==4);
CPPUNIT_ASSERT(tensor4.getDataPointShape()[0]==1);;
CPPUNIT_ASSERT(tensor4.getDataPointShape()[1]==1);;
CPPUNIT_ASSERT(tensor4.getDataPointShape()[2]==1);;
CPPUNIT_ASSERT(tensor4.getDataPointShape()[3]==1);;
}
{
cout << "\tCreate Data Expanded object with Tensor4 data points." << endl;
Data tensor4=Tensor4(1.5,FunctionSpace(),true);
//cout << tensor4.toString() << endl;
CPPUNIT_ASSERT(tensor4.isExpanded());
CPPUNIT_ASSERT(tensor4.getDataPointRank()==4);
CPPUNIT_ASSERT(tensor4.getDataPointShape()[0]==1);;
CPPUNIT_ASSERT(tensor4.getDataPointShape()[1]==1);;
CPPUNIT_ASSERT(tensor4.getDataPointShape()[2]==1);;
CPPUNIT_ASSERT(tensor4.getDataPointShape()[3]==1);;
}
}
TestSuite* DataFactoryTestCase::suite()
{
TestSuite *testSuite = new TestSuite("DataFactoryTestCase");
testSuite->addTest(new TestCaller<DataFactoryTestCase>(
"testAll",&DataFactoryTestCase::testAll));
return testSuite;
}
|