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 148 149 150 151 152 153 154
|
// vim:expandtab:autoindent:tabstop=4:shiftwidth=4:filetype=c:
/*
* Copyright (C) 2005 Dell Inc.
* by Michael Brown <Michael_E_Brown@dell.com>
* Licensed under the Open Software License version 2.1
*
* Alternatively, 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 2 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.
*/
#ifndef _TESTSTANDALONE_H
#define _TESTSTANDALONE_H
#include "smbios/compat.h"
#include <cppunit/extensions/HelperMacros.h>
#include <typeinfo>
#include <string>
#include "smbios/ISmbios.h"
#include "smbios/ICmosRW.h"
#include "smbios/IToken.h"
#include "smbios/SystemInfo.h"
#include "XmlUtils.h"
#include "outputctl.h"
extern int global_argc;
extern char ** global_argv;
class testStandalone : public CppUnit::TestFixture
{
protected:
virtual std::string getCppunitTopDirectory()
{
//return TEST_DIR;
return global_argv[1];
}
virtual std::string getWritableDirectory()
{
//return DEFAULT_TEST_DIR;
return global_argv[2];
};
virtual std::string getTestName()
{
//return TEST_DIR;
return global_argv[3];
}
virtual std::string getTestDirectory()
{
//return DEFAULT_TEST_DIR;
return global_argv[4];
};
public:
virtual void setUp();
virtual void tearDown();
// base smbios test
void testSmbiosTableBase();
void testSmbiosTableBase_iterNextItem();
void testSmbiosTableBase_findItemByType();
void testSmbiosTableBase_findItemByHandle();
// table tests
void testTable_Subscript();
void testEntryCount ();
void testConstIterator ();
void testSubscriptOperator1 ();
void testSubscriptOperator2 ();
void testSubscriptOperator3 ();
void testSmbiosXml();
// item tests
void testStreamify();
void testEachItemAccessors();
void testItemIdentity();
void testGetBoundaries();
// memory tests
void testMemoryBadFiles();
void testMemoryFuncs();
// cmos token tests
void testCmosConstructor();
// smi tests
void testSmi_callingInterface();
void testSmi_callingInterface_physaddr();
// testInput.xml tests
void testServiceTagWriting();
void testLibraryVersion();
// other
void testStateBytes();
// Exception Tests
void testException();
// Exception Tests
void testNonXml();
// make sure to put this at the end...
CPPUNIT_TEST_SUITE (testStandalone);
CPPUNIT_TEST (testSmbiosTableBase);
CPPUNIT_TEST (testSmbiosTableBase_iterNextItem);
CPPUNIT_TEST (testSmbiosTableBase_findItemByType);
CPPUNIT_TEST (testSmbiosTableBase_findItemByHandle);
CPPUNIT_TEST (testTable_Subscript);
CPPUNIT_TEST (testEntryCount);
CPPUNIT_TEST (testConstIterator);
CPPUNIT_TEST (testSubscriptOperator1);
CPPUNIT_TEST (testSubscriptOperator2);
CPPUNIT_TEST (testSubscriptOperator3);
CPPUNIT_TEST (testSmbiosXml);
CPPUNIT_TEST (testStreamify);
CPPUNIT_TEST (testItemIdentity);
CPPUNIT_TEST (testEachItemAccessors);
CPPUNIT_TEST (testGetBoundaries);
CPPUNIT_TEST (testMemoryBadFiles);
CPPUNIT_TEST (testMemoryFuncs);
CPPUNIT_TEST (testCmosConstructor);
CPPUNIT_TEST (testSmi_callingInterface);
CPPUNIT_TEST (testSmi_callingInterface_physaddr);
CPPUNIT_TEST (testLibraryVersion);
CPPUNIT_TEST (testException);
CPPUNIT_TEST (testNonXml);
CPPUNIT_TEST_SUITE_END ();
};
#endif
|