45c2eac88cc3eadf1fa4deeaeff842eae624a045
[ric-plt/a1.git] / tests / test_data.py
1 # ==================================================================================
2 #       Copyright (c) 2019 Nokia
3 #       Copyright (c) 2018-2019 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
19
20 def test_sdl_raw():
21     """
22     test raw sdl functions
23     """
24     data.SDL = data.SDLWrapper()
25     data.SDL.set("as.df1", "data")
26     data.SDL.set("as.df2", "data2")
27     assert data.SDL.get("as.df1") == "data"
28     assert data.SDL.get("as.df2") == "data2"
29     assert data.SDL.find_and_get("as.df1") == {"as.df1": "data"}
30     assert data.SDL.find_and_get("as.df2") == {"as.df2": "data2"}
31     assert data.SDL.find_and_get("as.df") == {"as.df1": "data", "as.df2": "data2"}
32     assert data.SDL.find_and_get("as.d") == {"as.df1": "data", "as.df2": "data2"}
33     assert data.SDL.find_and_get("as.") == {"as.df1": "data", "as.df2": "data2"}
34     assert data.SDL.find_and_get("asd") == {}
35
36     # delete 1
37     data.SDL.delete("as.df1")
38     assert data.SDL.get("as.df1") is None
39     assert data.SDL.get("as.df2") == "data2"
40
41     # delete 2
42     data.SDL.delete("as.df2")
43     assert data.SDL.get("as.df2") is None
44
45     assert data.SDL.find_and_get("as.df") == {}
46     assert data.SDL.find_and_get("") == {}