Beispiel #1
0
 def test_throws_if_more_than_5(self):
     with self.assertRaises(CLIError) as cm:
         validators.validate_spot_max_price(SpotMaxPriceNamespace(5.123456))
     self.assertTrue(
         '--spot_max_price can only include up to 5 decimal places'
         in str(cm.exception),
         msg=str(cm.exception))
Beispiel #2
0
 def test_throws_if_non_valid_negative(self):
     with self.assertRaises(CLIError) as cm:
         validators.validate_spot_max_price(SpotMaxPriceNamespace(-2))
     self.assertTrue(
         '--spot_max_price can only be any decimal value greater than zero, or -1 which indicates'
         in str(cm.exception),
         msg=str(cm.exception))
Beispiel #3
0
 def test_throws_if_input_max_price_for_regular(self):
     ns = SpotMaxPriceNamespace(2)
     ns.priority = "Regular"
     with self.assertRaises(CLIError) as cm:
         validators.validate_spot_max_price(ns)
     self.assertTrue(
         '--spot_max_price can only be set when --priority is Spot'
         in str(cm.exception),
         msg=str(cm.exception))
Beispiel #4
0
 def test_valid_cases(self):
     valid = [5, 5.12345, -1.0, 0.068, 0.071, 5.00000000]
     for v in valid:
         validators.validate_spot_max_price(SpotMaxPriceNamespace(v))