// -*- mode: c++; c-basic-offset:4 -*- // This file is part of libdap, A C++ implementation of the OPeNDAP Data // Access Protocol. // Copyright (c) 2002,2003 OPeNDAP, Inc. // Author: James Gallagher // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library 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 // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112. #include "config.h" #include #include #include //#define DODS_DEBUG #include "D4Attributes.h" #include "XMLWriter.h" #include "debug.h" #include "testFile.h" #include "test_config.h" #include "GetOpt.h" using namespace CppUnit; using namespace std; using namespace libdap; static bool debug = false; #undef DBG #define DBG(x) do { if (debug) (x); } while(false); class D4AttributesTest: public TestFixture { private: XMLWriter *xml; D4Attributes *attrs; D4Attribute a, a2, a3, a4, a5, c, c2; public: D4AttributesTest() { } ~D4AttributesTest() { } void setUp() { attrs = new D4Attributes; xml = new XMLWriter; a.set_name("first"); a.set_type(attr_byte_c); a.add_value("1"); a.add_value("2"); a2.set_name("second"); a2.set_type(attr_int32_c); a2.add_value("10000"); c.set_name("container_1"); c.set_type(attr_container_c); a3.set_name("color"); a3.set_type(attr_str_c); vector colors; colors.push_back("red"); colors.push_back("blue"); colors.push_back("green"); a3.add_value_vector(colors); a4 = a2; a4.set_name("control"); c.attributes()->add_attribute(&a3); c2.set_name("container_2"); c2.set_type(attr_container_c); c2.attributes()->add_attribute(&a4); c2.attributes()->add_attribute(&c); } void tearDown() { delete xml; delete attrs; } // An empty D4Dimensions object prints nothing; the XMLWriter class adds // a xml doc preface. void test_print_empty() { attrs->print_dap4(*xml); string doc = xml->get_doc(); string baseline = readTestBaseline(string(TEST_SRC_DIR) + "/D4-xml/D4Attributes_empty.xml"); DBG(cerr << "D4Attributes: " << doc << endl); CPPUNIT_ASSERT(doc == baseline); } void test_print_single_attribute() { a.print_dap4(*xml); string doc = xml->get_doc(); string baseline = readTestBaseline(string(TEST_SRC_DIR) + "/D4-xml/D4Attributes_values_1.xml"); DBG(cerr << "D4Attributes: " << doc << endl); CPPUNIT_ASSERT(doc == baseline); } void test_print_1() { attrs->add_attribute(&a); attrs->print_dap4(*xml); string doc = xml->get_doc(); string baseline = readTestBaseline(string(TEST_SRC_DIR) + "/D4-xml/D4Attributes_1.xml"); DBG(cerr << "D4Attributes: " << doc << endl); CPPUNIT_ASSERT(doc == baseline); } void test_print_2() { attrs->add_attribute(&a); attrs->add_attribute(&a2); attrs->print_dap4(*xml); string doc = xml->get_doc(); string baseline = readTestBaseline(string(TEST_SRC_DIR) + "/D4-xml/D4Attributes_2.xml"); DBG(cerr << "D4Attributes: " << doc << endl); CPPUNIT_ASSERT(doc == baseline); } void test_print_3() { attrs->add_attribute(&a); attrs->add_attribute(&a2); attrs->add_attribute(&c); attrs->add_attribute(&c2); attrs->print_dap4(*xml); string doc = xml->get_doc(); string baseline = readTestBaseline(string(TEST_SRC_DIR) + "/D4-xml/D4Attributes_3.xml"); DBG(cerr << "D4Attributes: " << doc << endl); CPPUNIT_ASSERT(doc == baseline); } void test_print_assignment() { attrs->add_attribute(&a); attrs->add_attribute(&a2); D4Attributes lhs = *attrs; lhs.print_dap4(*xml); string doc = xml->get_doc(); string baseline = readTestBaseline(string(TEST_SRC_DIR) + "/D4-xml/D4Attributes_assignment.xml"); DBG(cerr << "D4Attributes: " << doc << endl); CPPUNIT_ASSERT(doc == baseline); } void test_print_assignment_2() { attrs->add_attribute(&a); attrs->add_attribute(&a2); attrs->add_attribute(&c); attrs->add_attribute(&c2); D4Attributes lhs = *attrs; lhs.print_dap4(*xml); string doc = xml->get_doc(); string baseline = readTestBaseline(string(TEST_SRC_DIR) + "/D4-xml/D4Attributes_assignment_2.xml"); DBG(cerr << "D4Attributes: " << doc << endl); CPPUNIT_ASSERT(doc == baseline); } void test_print_copy_ctor() { attrs->add_attribute(&a); attrs->add_attribute(&a2); D4Attributes lhs(*attrs); lhs.print_dap4(*xml); string doc = xml->get_doc(); string baseline = readTestBaseline(string(TEST_SRC_DIR) + "/D4-xml/D4Attributes_copy_ctor.xml"); DBG(cerr << "D4Attributes: " << doc << endl); CPPUNIT_ASSERT(doc == baseline); } void test_find() { attrs->add_attribute(&a); attrs->add_attribute(&a2); attrs->add_attribute(&c); attrs->add_attribute(&c2); D4Attribute *find_result = attrs->find("color"); // 'color' is in the container 'container' which is the third // attribute D4Attribute *baseline = *(attrs->attribute_begin() + 2); CPPUNIT_ASSERT(baseline); CPPUNIT_ASSERT(baseline->type() == attr_container_c); D4Attributes *local_attrs = baseline->attributes(); // it is the first attribute in that container baseline = *(local_attrs->attribute_begin()); CPPUNIT_ASSERT(baseline); CPPUNIT_ASSERT(baseline->type() == attr_str_c); CPPUNIT_ASSERT(baseline->name() == "color"); // We get a pointer to actual container, not a copy CPPUNIT_ASSERT(baseline == find_result); } void test_get() { attrs->add_attribute(&a); attrs->add_attribute(&a2); attrs->add_attribute(&c); attrs->add_attribute(&c2); D4Attribute *get_result = attrs->get("container_1.color"); // 'color' is in the container 'container_1' which is the third // attribute D4Attribute *baseline = *(attrs->attribute_begin() + 2); CPPUNIT_ASSERT(baseline); CPPUNIT_ASSERT(baseline->type() == attr_container_c); D4Attributes *local_attrs = baseline->attributes(); // it is the first attribute in that container baseline = *(local_attrs->attribute_begin()); CPPUNIT_ASSERT(baseline); CPPUNIT_ASSERT(baseline->type() == attr_str_c); CPPUNIT_ASSERT(baseline->name() == "color"); // We get a pointer to actual container, not a copy CPPUNIT_ASSERT(baseline == get_result); } void test_get2() { attrs->add_attribute(&a); attrs->add_attribute(&a2); attrs->add_attribute(&c); attrs->add_attribute(&c2); D4Attribute *get_result = attrs->get("container_2.container_1.color"); // 'color' is (also) in the container 'container_1' which is in // the container 'container_2' which is the fourth attribute D4Attribute *baseline = *(attrs->attribute_begin() + 3); CPPUNIT_ASSERT(baseline); CPPUNIT_ASSERT(baseline->type() == attr_container_c); CPPUNIT_ASSERT(baseline->name() == "container_2"); D4Attributes *local_attrs = baseline->attributes(); // 'container_1 is the second attribute in 'container_2' baseline = *(local_attrs->attribute_begin() + 1); CPPUNIT_ASSERT(baseline); CPPUNIT_ASSERT(baseline->type() == attr_container_c); CPPUNIT_ASSERT(baseline->name() == "container_1"); local_attrs = baseline->attributes(); // finally, 'color' is the first attribute in 'container_1' baseline = *(local_attrs->attribute_begin()); CPPUNIT_ASSERT(baseline->type() == attr_str_c); CPPUNIT_ASSERT(baseline->name() == "color"); // We get a pointer to actual container, not a copy CPPUNIT_ASSERT(baseline == get_result); } CPPUNIT_TEST_SUITE (D4AttributesTest); CPPUNIT_TEST (test_print_empty); CPPUNIT_TEST (test_print_single_attribute); CPPUNIT_TEST (test_print_1); CPPUNIT_TEST (test_print_2); CPPUNIT_TEST (test_print_3); CPPUNIT_TEST (test_print_assignment); CPPUNIT_TEST (test_print_assignment_2); CPPUNIT_TEST (test_print_copy_ctor); CPPUNIT_TEST (test_find); CPPUNIT_TEST (test_get); CPPUNIT_TEST (test_get2); CPPUNIT_TEST_SUITE_END(); }; CPPUNIT_TEST_SUITE_REGISTRATION (D4AttributesTest); int main(int argc, char*argv[]) { GetOpt getopt(argc, argv, "dh"); int option_char; while ((option_char = getopt()) != -1) switch (option_char) { case 'd': debug = 1; // debug is a static global break; case 'h': { // help - show test names cerr << "Usage: D4AttributesTest has the following tests:" << endl; const std::vector &tests = D4AttributesTest::suite()->getTests(); unsigned int prefix_len = D4AttributesTest::suite()->getName().append("::").length(); for (std::vector::const_iterator i = tests.begin(), e = tests.end(); i != e; ++i) { cerr << (*i)->getName().replace(0, prefix_len, "") << endl; } break; } default: break; } CppUnit::TextTestRunner runner; runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest()); bool wasSuccessful = true; string test = ""; int i = getopt.optind; if (i == argc) { // run them all wasSuccessful = runner.run(""); } else { for (; i < argc; ++i) { if (debug) cerr << "Running " << argv[i] << endl; test = D4AttributesTest::suite()->getName().append("::").append(argv[i]); wasSuccessful = wasSuccessful && runner.run(test); } } return wasSuccessful ? 0 : 1; }