Пример #1
0
    def test_client_properties_with_no_provided_values(self):
        client_properties = get_client_properties_with_defaults(
            provided_client_properties=None)
        self.assertTrue("product" in client_properties)

        client_properties = get_client_properties_with_defaults()
        self.assertTrue("product" in client_properties)
Пример #2
0
 def test_client_properties_with_provided_value(self):
     client_properties = get_client_properties_with_defaults(
         provided_client_properties={"mykey": "myvalue"})
     self.assertTrue("product" in client_properties)
     self.assertTrue("mykey" in client_properties)
     self.assertEqual("myvalue", client_properties["mykey"])
Пример #3
0
 def test_client_properties_with_provided_value_that_overrides_default(
         self):
     client_properties = get_client_properties_with_defaults(
         provided_client_properties={"product": "myproduct"})
     self.assertEqual("myproduct", client_properties["product"])
Пример #4
0
 def test_get_client_properties_with_provided_value_that_overrides_default(self):
   client_properties = get_client_properties_with_defaults(provided_client_properties={"version":"myversion"})
   self.assertEqual("myversion", client_properties["version"])
Пример #5
0
 def test_default_client_properties_010(self):
     client_properties = get_client_properties_with_defaults(
         version_property_key="qpid.client_version")
     self.assertTrue("product" in client_properties)
     self.assertTrue("qpid.client_version" in client_properties)
     self.assertTrue("platform" in client_properties)
Пример #6
0
  def test_get_client_properties_with_no_provided_values(self):
    client_properties = get_client_properties_with_defaults(provided_client_properties=None)
    self.assertTrue("product" in client_properties)

    client_properties = get_client_properties_with_defaults()
    self.assertTrue("product" in client_properties)
Пример #7
0
 def test_get_client_properties_with_provided_value(self):
   client_properties = get_client_properties_with_defaults(provided_client_properties={"mykey":"myvalue"})
   self.assertTrue("product" in client_properties)
   self.assertTrue("mykey" in client_properties)
   self.assertEqual("myvalue", client_properties["mykey"])
Пример #8
0
 def test_get_spec_recommended_client_properties(self):
   client_properties = get_client_properties_with_defaults(provided_client_properties={"mykey":"myvalue"})
   self.assertTrue("product" in client_properties)
   self.assertTrue("version" in client_properties)
   self.assertTrue("platform" in client_properties)
Пример #9
0
 def test_client_properties_with_provided_value_that_overrides_default(self):
   client_properties = get_client_properties_with_defaults(provided_client_properties={"product":"myproduct"})
   self.assertEqual("myproduct", client_properties["product"])
Пример #10
0
 def test_default_client_properties_010(self):
   client_properties = get_client_properties_with_defaults(version_property_key="qpid.client_version")
   self.assertTrue("product" in client_properties)
   self.assertTrue("qpid.client_version" in client_properties)
   self.assertTrue("platform" in client_properties)