# Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import unittest import parl from parl.remote.master import Master from parl.remote.worker import Worker from parl.remote.monitor import ClusterMonitor import time import threading from parl.remote.client import disconnect from parl.remote import exceptions import subprocess @parl.remote_class class Actor(object): def __init__(self, arg1=None, arg2=None): self.arg1 = arg1 self.arg2 = arg2 def get_arg1(self): return self.arg1 def get_arg2(self): return self.arg2 def set_arg1(self, value): self.arg1 = value def set_arg2(self, value): self.arg2 = value def add_one(self, value): value += 1 return value def add(self, x, y): time.sleep(3) return x + y def will_raise_exception_func(self): x = 1 / 0 class TestClusterMonitor(unittest.TestCase): def tearDown(self): disconnect() def test_twenty_worker(self): port = 1440 master = Master(port=port) th = threading.Thread(target=master.run) th.start() time.sleep(1) workers = [] for _ in range(20): worker = Worker('localhost:{}'.format(port), 1) time.sleep(1) workers.append(worker) cluster_monitor = ClusterMonitor('localhost:{}'.format(port)) time.sleep(1) self.assertEqual(20, len(cluster_monitor.data['workers'])) # check if the number of workers drops by 10 for i in range(10): workers[i].exit() check_flag = False for _ in range(10): if 10 == len(cluster_monitor.data['workers']): check_flag = True break time.sleep(10) self.assertTrue(check_flag) for i in range(10, 20): workers[i].exit() # check if the number of workers drops to 0 check_flag = False for _ in range(10): if 0 == len(cluster_monitor.data['workers']): check_flag = True break time.sleep(10) self.assertTrue(check_flag) master.exit() if __name__ == '__main__': unittest.main()