-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathtest_moosemodule.cpp
101 lines (87 loc) · 2.47 KB
/
test_moosemodule.cpp
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
// test_moosemodule.cpp ---
//
// Description:
// Author: Subha
// Maintainer: Dilawar Singh
// Created: Tue Jul 23 11:37:57 2013 (+0530)
#include "Python.h"
#include <iostream>
#include <cstring>
#include "../basecode/header.h"
#include "../basecode/Id.h"
#include "../basecode/ObjId.h"
#include "../shell/Shell.h"
#include "moosemodule.h"
#include "../utility/utility.h"
using namespace std;
extern "C" {
void test_to_py()
{
#ifdef DO_UNIT_TESTS
// conversion of double
PyObject * pv;
double dv = 10.0;
pv = to_py((void*)&dv, 'd');
assert(pv != NULL);
assert(PyFloat_AsDouble(pv) == dv);
Py_XDECREF(pv);
cout << "." << flush;
// conversion of long
long lv = 1000000000;
pv = to_py((void*)&lv, 'l');
assert(pv != NULL);
assert(PyLong_AsLong(pv) == lv);
Py_XDECREF(pv);
cout << "." << flush;
// conversion of int
int iv = 10;
pv = to_py((void*)&iv, 'i');
assert(pv != NULL);
assert(PyInt_AsLong(pv) == iv);
Py_XDECREF(pv);
cout << "." << flush;
// conversion of float
float fv = 7e-3;
pv = to_py((void*)&fv, 'f');
assert(pv != NULL);
assert(PyFloat_AsDouble(pv) == fv);
Py_XDECREF(pv);
cout << "." << flush;
// string char-array
string sv = "hello world";
// C++ string
pv = to_py((void*)&sv, 's');
assert(pv != NULL);
assert(strcmp(PyString_AsString(pv), sv.c_str()) == 0);
Py_XDECREF(pv);
cout << "." << flush;
// Id
Shell * shell = reinterpret_cast< Shell * >(ObjId( Id(), 0).data());
Id id = shell->doCreate("Neutral", Id(), "n", 1);
pv = to_py((void*)&id, 'x');
assert(pv != NULL);
assert(((_Id*)pv)->id_ == id);
Py_XDECREF(pv);
cout << "." << flush;
// ObjId
ObjId oid(id, 0);
pv = to_py((void*)&oid, 'y');
assert(pv != NULL);
assert(((_ObjId*)pv)->oid_.id == oid.id);
//Harsha: commeted this line to compile moose in debug mode
//assert(((_ObjId*)pv)->oid_.dataId == oid.dataId);
Py_XDECREF(pv);
cout << "." << flush;
// Incorrect type code
pv = to_py((void*)&oid, '9');
assert(pv == NULL);
PyErr_Clear();
cout << "." << flush;
shell->doDelete(id);
#endif
}
} // extern "C"
void test_moosemodule()
{
test_to_py();
}