You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
1.4 KiB
97 lines
1.4 KiB
#include <sys/types.h>
|
|
#include <json/json.h>
|
|
|
|
#include "runtest.h"
|
|
#include "mock/class.h"
|
|
#include "token/cclass.h"
|
|
|
|
|
|
char testname[] = "cclassTest";
|
|
struct MOCK_CLASS * mock = NULL;
|
|
|
|
void
|
|
setUp()
|
|
{
|
|
mock = NULL;
|
|
_reset();
|
|
}
|
|
|
|
void
|
|
tearDown()
|
|
{
|
|
if (NULL != mock) {
|
|
delete(&mock);
|
|
}
|
|
}
|
|
|
|
int
|
|
testNew(void)
|
|
{
|
|
mock = new(MOCK_CLASS, 123);
|
|
|
|
ASSERT_NOT_NULL(mock);
|
|
ASSERT_EQUAL(1, _called);
|
|
ASSERT_EQUAL(123, mock_class_getValue(mock));
|
|
|
|
return TEST_OK;
|
|
}
|
|
|
|
int
|
|
testNewFromJson(void)
|
|
{
|
|
struct json_object * json = json_object_new_int(123);
|
|
|
|
mock = newFromJson(MOCK_CLASS, json);
|
|
json_object_put(json);
|
|
|
|
ASSERT_NOT_NULL(mock);
|
|
ASSERT_EQUAL(1, _called);
|
|
ASSERT_EQUAL(123, mock_class_getValue(mock));
|
|
|
|
return TEST_OK;
|
|
}
|
|
|
|
int
|
|
testDelete(void)
|
|
{
|
|
mock = new(MOCK_CLASS, 123);
|
|
|
|
ASSERT_NOT_NULL(mock);
|
|
|
|
_reset();
|
|
delete(&mock);
|
|
|
|
ASSERT_NULL(mock);
|
|
ASSERT_EQUAL(1, _called);
|
|
|
|
return TEST_OK;
|
|
}
|
|
|
|
int
|
|
testToJson(void)
|
|
{
|
|
struct json_object * json = NULL;
|
|
mock = new(MOCK_CLASS, 123);
|
|
int value;
|
|
|
|
json = toJson(mock);
|
|
|
|
ASSERT_NOT_NULL(json);
|
|
value = json_object_get_int(json);
|
|
json_object_put(json);
|
|
|
|
ASSERT_EQUAL(123, value);
|
|
ASSERT_EQUAL(1, _called);
|
|
|
|
return TEST_OK;
|
|
}
|
|
|
|
testfunc tests[] = {
|
|
testNew,
|
|
testNewFromJson,
|
|
testDelete,
|
|
testToJson
|
|
};
|
|
size_t count = FUNCS_COUNT(tests);
|
|
|
|
// vim: set et ts=4 sw=4:
|