A1 v2.1.0
[ric-plt/a1.git] / tests / test_data.py
1 # ==================================================================================
2 #       Copyright (c) 2019-2020 Nokia
3 #       Copyright (c) 2018-2020 AT&T Intellectual Property.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #          http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 # ==================================================================================
17 from a1 import data
18 from .a1test_helpers import MockSDLWrapper
19
20
21 def setup_module():
22     """module level setup"""
23     data.SDL = MockSDLWrapper()  # patch SDL
24
25
26 def test_sdl_raw():
27     """
28     test raw sdl functions
29     """
30     data.SDL.set("as.df1", "data")
31     data.SDL.set("as.df2", "data2")
32     assert data.SDL.get("as.df1") == "data"
33     assert data.SDL.get("as.df2") == "data2"
34     assert data.SDL.find_and_get("as.df1") == {"as.df1": "data"}
35     assert data.SDL.find_and_get("as.df2") == {"as.df2": "data2"}
36     assert data.SDL.find_and_get("as.df") == {"as.df1": "data", "as.df2": "data2"}
37     assert data.SDL.find_and_get("as.d") == {"as.df1": "data", "as.df2": "data2"}
38     assert data.SDL.find_and_get("as.") == {"as.df1": "data", "as.df2": "data2"}
39     assert data.SDL.find_and_get("asd") == {}
40
41     # delete 1
42     data.SDL.delete("as.df1")
43     assert data.SDL.get("as.df1") is None
44     assert data.SDL.get("as.df2") == "data2"
45
46     # delete 2
47     data.SDL.delete("as.df2")
48     assert data.SDL.get("as.df2") is None
49
50     assert data.SDL.find_and_get("as.df") == {}
51     assert data.SDL.find_and_get("") == {}