Merge from OSM SO master
[osm/SO.git] / rwlaunchpad / plugins / rwstagingmgr / test / utest_publisher_dts.py
1 #!/usr/bin/env python3
2
3 #
4 # Copyright 2016 RIFT.IO Inc
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
19 import argparse
20 import asyncio
21 import logging
22 import os
23 import sys
24 import unittest
25 import uuid
26 import xmlrunner
27
28 import gi
29 gi.require_version('RwDts', '1.0')
30 gi.require_version('RwStagingMgmtYang', '1.0')
31 from gi.repository import (
32 RwDts as rwdts,
33 RwStagingMgmtYang
34 )
35 import rift.tasklets.rwstagingmgr.publisher as publisher
36 import rift.test.dts
37 from rift.mano.utils.project import ManoProject
38
39 class TestProject(ManoProject):
40 def __init__(self, log, dts, loop):
41 super().__init__(log)
42 self._dts = dts
43 self._loop = loop
44
45
46 class TestCase(rift.test.dts.AbstractDTSTest):
47 @classmethod
48 def configure_schema(cls):
49 return RwStagingMgmtYang.get_schema()
50
51 @classmethod
52 def configure_timeout(cls):
53 return 240
54
55 def configure_test(self, loop, test_id):
56 self.log.debug("STARTING - %s", test_id)
57 self.tinfo = self.new_tinfo(str(test_id))
58 self.dts = rift.tasklets.DTS(self.tinfo, self.schema, self.loop)
59 self.project = TestProject(self.log, self.dts, self.loop)
60
61 self.job_handler = publisher.StagingStorePublisher(self.project)
62
63 def tearDown(self):
64 super().tearDown()
65
66 @asyncio.coroutine
67 def get_published_xpaths(self):
68 published_xpaths = set()
69
70 res_iter = yield from self.dts.query_read("D,/rwdts:dts")
71 for i in res_iter:
72 res = (yield from i).result
73 for member in res.member:
74 published_xpaths |= {reg.keyspec for reg in member.state.registration if reg.flags == "publisher"}
75
76 return published_xpaths
77
78 @asyncio.coroutine
79 def read_xpath(self, xpath):
80 itr = yield from self.dts.query_read(xpath)
81
82 result = None
83 for fut in itr:
84 result = yield from fut
85 return result.result
86
87 @rift.test.dts.async_test
88 def test_download_publisher(self):
89 yield from self.job_handler.register()
90 yield from asyncio.sleep(2, loop=self.loop)
91 published_xpaths = yield from self.get_published_xpaths()
92 assert self.job_handler.xpath() in published_xpaths
93 self.job_handler.deregister()
94
95 @rift.test.dts.async_test
96 def test_publish(self):
97 """
98 """
99 yield from self.job_handler.register()
100
101 mock_msg = RwStagingMgmtYang.StagingArea.from_dict({
102 "area_id": "123"})
103
104 self.job_handler.on_staging_area_create(mock_msg)
105 yield from asyncio.sleep(5, loop=self.loop)
106
107 xpath = self.project.add_project("/staging-areas/staging-area[area-id='{}']".
108 format(mock_msg.area_id))
109 itr = yield from self.dts.query_read(xpath)
110
111
112 result = None
113 for fut in itr:
114 result = yield from fut
115 result = result.result
116
117 print (result)
118 assert result == mock_msg
119 self.job_handler.deregister()
120
121 def main():
122 runner = xmlrunner.XMLTestRunner(output=os.environ["RIFT_MODULE_TEST"])
123
124 parser = argparse.ArgumentParser()
125 parser.add_argument('-v', '--verbose', action='store_true')
126 parser.add_argument('-n', '--no-runner', action='store_true')
127 args, unittest_args = parser.parse_known_args()
128 if args.no_runner:
129 runner = None
130
131 TestCase.log_level = logging.DEBUG if args.verbose else logging.WARN
132
133 unittest.main(testRunner=runner, argv=[sys.argv[0]] + unittest_args)
134
135 if __name__ == '__main__':
136 main()