You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-02 06:13:16 +03:00
128 lines
3.2 KiB
C++
128 lines
3.2 KiB
C++
/* Copyright (C) 2014 InfiniDB, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; version 2 of
|
|
the License.
|
|
|
|
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.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
#include <cstring>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
#include "snmpmanager.h"
|
|
#include "liboamcpp.h"
|
|
|
|
using namespace snmpmanager;
|
|
using namespace oam;
|
|
using namespace messageqcpp;
|
|
using namespace std;
|
|
|
|
class SNMPManagerTest : public CppUnit::TestFixture {
|
|
|
|
CPPUNIT_TEST_SUITE( SNMPManagerTest );
|
|
|
|
CPPUNIT_TEST( test1 );
|
|
CPPUNIT_TEST( test2 );
|
|
//CPPUNIT_TEST( test3 ); // requires ProcMgr to be running
|
|
CPPUNIT_TEST( test4 );
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
private:
|
|
|
|
public:
|
|
void setUp() {
|
|
}
|
|
|
|
void tearDown() {
|
|
}
|
|
|
|
void test1() {
|
|
// set alarm
|
|
SNMPManager sm;
|
|
sm.sendAlarmReport("EC-DISK-1", 4, SET);
|
|
AlarmList activeAlarms;
|
|
sm.getActiveAlarm(activeAlarms);
|
|
|
|
//clear alarm
|
|
sm.sendAlarmReport("EC-DISK-1", 4, CLEAR);
|
|
sm.getActiveAlarm(activeAlarms);
|
|
}
|
|
|
|
void test2() {
|
|
Alarm alarm;
|
|
alarm.setAlarmID (2);
|
|
alarm.setComponentID ("atlanta");
|
|
alarm.setSeverity (MAJOR);
|
|
alarm.setState (1);
|
|
cout << alarm << endl;
|
|
string a;
|
|
uint32_t b;
|
|
b = alarm.getCtnThreshold();
|
|
alarm.setCtnThreshold(b);
|
|
b = alarm.getOccurrence();
|
|
alarm.setOccurrence(b);
|
|
a = alarm.getTimestamp();
|
|
b = alarm.getLastIssueTime();
|
|
alarm.setLastIssueTime(b);
|
|
a = alarm.getSname();
|
|
alarm.setSname(a);
|
|
a = alarm.getPname();
|
|
alarm.setPname(a);
|
|
b = alarm.getTid();
|
|
alarm.setTid(b);
|
|
b = alarm.getPid();
|
|
alarm.setPid(b);
|
|
}
|
|
|
|
void test3()
|
|
{
|
|
SNMPManager sm;
|
|
string value;
|
|
sm.setSNMPConfig ("atlanta", SUB_AGENT, "DISK_CRITICAL", "2000000");
|
|
sm.getSNMPConfig ("atlanta", SUB_AGENT, "DISK_CRITICAL", value);
|
|
cout << "DISK: " << value << endl;
|
|
sm.setSNMPConfig ("atlanta", SUB_AGENT, "MEM_MAJOR", "333333");
|
|
sm.getSNMPConfig ("atlanta", SUB_AGENT, "MEM_MAJOR", value);
|
|
cout << "MEM " << value << endl;
|
|
sm.setSNMPConfig ("atlanta", SUB_AGENT, "SWAP_MINOR", "543216");
|
|
sm.getSNMPConfig ("atlanta", SUB_AGENT, "SWAP_MINOR", value);
|
|
cout << "SWAP " << value << endl;
|
|
sm.setNMSAddr ("10.100.3.141");
|
|
sm.getNMSAddr (value);
|
|
cout << "NMS address: " << value << endl;
|
|
}
|
|
|
|
void test4() {
|
|
// set Server name in snmpdx.conf
|
|
SNMPManager sm;
|
|
sm.setSNMPModuleName();
|
|
}
|
|
|
|
|
|
};
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( SNMPManagerTest );
|
|
|
|
#include <cppunit/extensions/TestFactoryRegistry.h>
|
|
#include <cppunit/ui/text/TestRunner.h>
|
|
|
|
int main( int argc, char **argv)
|
|
{
|
|
CppUnit::TextUi::TestRunner runner;
|
|
CppUnit::TestFactoryRegistry ®istry = CppUnit::TestFactoryRegistry::getRegistry();
|
|
runner.addTest( registry.makeTest() );
|
|
bool wasSuccessful = runner.run( "", false );
|
|
return (wasSuccessful ? 0 : 1);
|
|
}
|
|
|