Move rmr python here.
[ric-plt/xapp-frame-py.git] / tests / conftest.py
1 # vim: ts=4 sw=4 expandtab:
2 # ==================================================================================
3 #       Copyright (c) 2019 Nokia
4 #       Copyright (c) 2018-2019 AT&T Intellectual Property.
5 #
6 #   Licensed under the Apache License, Version 2.0 (the "License");
7 #   you may not use this file except in compliance with the License.
8 #   You may obtain a copy of the License at
9 #
10 #          http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #   Unless required by applicable law or agreed to in writing, software
13 #   distributed under the License is distributed on an "AS IS" BASIS,
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #   See the License for the specific language governing permissions and
16 #   limitations under the License.
17 # ==================================================================================
18 import pytest
19
20
21 # These are here just to reduce the size of the code in test_rmr so those (important) tests are more readable; in theory these dicts could be large
22 # The actual value of the constants should be ignored by the tests; all we should care
23 # about is that the constant value was returned by the RMR function. Further, we should
24 # not consider it an error if RMR returns more than what is listed here; these are the
25 # list of what is/could be used by this package.
26 @pytest.fixture
27 def expected_constants():
28     return {
29         "RMR_MAX_XID": 32,
30         "RMR_MAX_SID": 32,
31         "RMR_MAX_MEID": 32,
32         "RMR_MAX_SRC": 64,
33         "RMR_MAX_RCV_BYTES": 4096,
34         "RMRFL_NONE": 0,
35         "RMRFL_MTCALL": 2,  # can't be added here until jenkins version >= 1.8.3
36         "RMRFL_AUTO_ALLOC": 3,
37         "RMR_DEF_SIZE": 0,
38         "RMR_VOID_MSGTYPE": -1,
39         "RMR_VOID_SUBID": -1,
40         "RMR_OK": 0,
41         "RMR_ERR_BADARG": 1,
42         "RMR_ERR_NOENDPT": 2,
43         "RMR_ERR_EMPTY": 3,
44         "RMR_ERR_NOHDR": 4,
45         "RMR_ERR_SENDFAILED": 5,
46         "RMR_ERR_CALLFAILED": 6,
47         "RMR_ERR_NOWHOPEN": 7,
48         "RMR_ERR_WHID": 8,
49         "RMR_ERR_OVERFLOW": 9,
50         "RMR_ERR_RETRY": 10,
51         "RMR_ERR_RCVFAILED": 11,
52         "RMR_ERR_TIMEOUT": 12,
53         "RMR_ERR_UNSET": 13,
54         "RMR_ERR_TRUNC": 14,
55         "RMR_ERR_INITFAILED": 15,
56     }
57
58
59 @pytest.fixture
60 def expected_states():
61     return {
62         0: "RMR_OK",
63         1: "RMR_ERR_BADARG",
64         2: "RMR_ERR_NOENDPT",
65         3: "RMR_ERR_EMPTY",
66         4: "RMR_ERR_NOHDR",
67         5: "RMR_ERR_SENDFAILED",
68         6: "RMR_ERR_CALLFAILED",
69         7: "RMR_ERR_NOWHOPEN",
70         8: "RMR_ERR_WHID",
71         9: "RMR_ERR_OVERFLOW",
72         10: "RMR_ERR_RETRY",
73         11: "RMR_ERR_RCVFAILED",
74         12: "RMR_ERR_TIMEOUT",
75         13: "RMR_ERR_UNSET",
76         14: "RMR_ERR_TRUNC",
77         15: "RMR_ERR_INITFAILED",
78     }