Пример #1
0
class TestSmPlayService(unittest.TestCase):
  def setUp(self):
    sm_application = SmApplication("test/conf/", features = {})
    sm_context = SmContext(sm_application, "")
    self.sm_play_service = SmPlayServiceStarter(sm_context, "PLAY_NEXUS_END_TO_END_TEST", "", "", 9000, "", "", "", "")

  def test_closed_assets_config(self):
    assert_that(self.sm_play_service._get_assets_version("test/testapps/basicplayapp"), has_item("2.149.0"))

  def test_open_assets_config(self):
    assert_that(self.sm_play_service._get_assets_version("test/testapps/openplayapp"), has_item("2.150.0"))
Пример #2
0
class TestSmPlayService(unittest.TestCase):
  test_dir = os.path.join(os.path.dirname(__file__), "../")

  def setUp(self):
    sm_application = SmApplication(self.test_dir + "conf/", features = {})
    sm_context = SmContext(sm_application, "")
    self.sm_play_service = SmPlayServiceStarter(sm_context, "PLAY_NEXUS_END_TO_END_TEST", "", "", 9000, "", "", "", "")

  def test_closed_assets_config(self):
    assert_that(self.sm_play_service._get_assets_version(self.test_dir + "testapps/basicplayapp"), equal_to(["2.149.0", "2.150.0"]))

  def test_open_assets_config(self):
    assert_that(self.sm_play_service._get_assets_version(self.test_dir + "testapps/openplayapp"), has_item("2.150.0"))
Пример #3
0
 def setUp(self):
   sm_application = SmApplication("test/conf/", features = {})
   sm_context = SmContext(sm_application, "")
   self.sm_play_service = SmPlayServiceStarter(sm_context, "PLAY_NEXUS_END_TO_END_TEST", "", "", 9000, "", "", "", "")
Пример #4
0
 def setUp(self):
     sm_application = SmApplication("test/conf/", features={})
     sm_context = SmContext(sm_application, "")
     self.sm_play_service = SmPlayServiceStarter(
         sm_context, "PLAY_NEXUS_END_TO_END_TEST", "", "", 9000, "", "", "",
         "")