owlps/owlps-positioning/tests/stock_test.hh

124 lines
3.9 KiB
C++
Raw Normal View History

#include <cxxtest/TestSuite.h>
#include "stock.hh"
#include "posexcept.hh"
class Stock_test: public CxxTest::TestSuite
{
public:
void setUp(void)
{
Stock::clear() ;
}
void tearDown(void)
{
Stock::clear() ;
}
void test_buildings(void)
{
TS_ASSERT_THROWS(Stock::get_building("My building"),
element_not_found) ;
const Building &building1 =
Stock::find_create_building("My building") ;
TS_ASSERT(&building1) ;
const Building &building2 = Stock::get_building("My building") ;
TS_ASSERT_EQUALS(&building1, &building2) ;
Stock::clear() ;
TS_ASSERT_THROWS(Stock::get_building("My building"),
element_not_found) ;
}
void test_mobiles(void)
{
TS_ASSERT_THROWS(Stock::get_mobile("aa:bb:cc:dd:ee:ff"),
element_not_found) ;
Mobile m1 ;
TS_ASSERT_EQUALS(Stock::getw_mobile("00:00:00:00:01:01"), m1) ;
Mobile m2("192.168.1.1", "00:00:00:00:01:02", 1.5, 20) ;
Stock::getw_mobile("00:00:00:00:01:02") = m2 ;
TS_ASSERT_EQUALS(Stock::get_mobile("00:00:00:00:01:02"), m2) ;
TS_ASSERT_EQUALS(Stock::getw_mobile("00:00:00:00:01:02"), m2) ;
const Mobile &mobile3 =
Stock::find_create_mobile("00:00:00:00:01:03") ;
TS_ASSERT(&mobile3) ;
TS_ASSERT_EQUALS(mobile3.get_mac_addr(), "00:00:00:00:01:03") ;
Stock::clear() ;
TS_ASSERT_THROWS(Stock::get_mobile("aa:bb:cc:dd:ee:ff"),
element_not_found) ;
TS_ASSERT_THROWS(Stock::get_mobile("00:00:00:00:01:01"),
element_not_found) ;
TS_ASSERT_THROWS(Stock::get_mobile("00:00:00:00:01:02"),
element_not_found) ;
TS_ASSERT_THROWS(Stock::get_mobile("00:00:00:00:01:03"),
element_not_found) ;
}
void test_aps(void)
{
TS_ASSERT_THROWS(Stock::get_ap("aa:bb:cc:dd:ee:ff"),
element_not_found) ;
AccessPoint ap1 ;
TS_ASSERT_EQUALS(Stock::getw_ap("00:00:00:00:02:01"), ap1) ;
AccessPoint ap2(Point3D(1,2,3), "192.168.2.1", "00:00:00:00:02:02",
8.5, 2.1, 11) ;
Stock::getw_ap("00:00:00:00:02:02") = ap2 ;
TS_ASSERT_EQUALS(Stock::get_ap("00:00:00:00:02:02"), ap2) ;
TS_ASSERT_EQUALS(Stock::getw_ap("00:00:00:00:02:02"), ap2) ;
Stock::clear() ;
TS_ASSERT_THROWS(Stock::get_ap("aa:bb:cc:dd:ee:ff"),
element_not_found) ;
TS_ASSERT_THROWS(Stock::get_ap("00:00:00:00:02:01"),
element_not_found) ;
TS_ASSERT_THROWS(Stock::get_ap("00:00:00:00:02:02"),
element_not_found) ;
}
void test_reference_points(void)
{
ReferencePoint referencepoint1(3,5,7) ;
const ReferencePoint &referencepoint1_ref1 =
Stock::find_create_reference_point(referencepoint1) ;
TS_ASSERT_EQUALS(referencepoint1, referencepoint1_ref1) ;
TS_ASSERT_DIFFERS(&referencepoint1, &referencepoint1_ref1) ;
const ReferencePoint &referencepoint1_ref2 =
Stock::find_create_reference_point(referencepoint1) ;
TS_ASSERT_EQUALS(referencepoint1, referencepoint1_ref2) ;
TS_ASSERT_DIFFERS(&referencepoint1, &referencepoint1_ref2) ;
TS_ASSERT_EQUALS(&referencepoint1_ref1, &referencepoint1_ref2) ;
}
void test_calibration_requests(void)
{
CalibrationRequest calibrationrequest1 ;
const CalibrationRequest &calibrationrequest1_ref1 =
Stock::find_create_calibration_request(calibrationrequest1) ;
TS_ASSERT_EQUALS(calibrationrequest1, calibrationrequest1_ref1) ;
TS_ASSERT_DIFFERS(&calibrationrequest1, &calibrationrequest1_ref1) ;
const CalibrationRequest &calibrationrequest1_ref2 =
Stock::find_create_calibration_request(calibrationrequest1) ;
TS_ASSERT_EQUALS(calibrationrequest1, calibrationrequest1_ref2) ;
TS_ASSERT_DIFFERS(&calibrationrequest1, &calibrationrequest1_ref2) ;
TS_ASSERT_EQUALS(&calibrationrequest1_ref1, &calibrationrequest1_ref2) ;
}
} ;