| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Budget API: Make basic getCost calls.</title> | 4 <title>Budget API: Make basic getCost calls.</title> |
| 5 <script src="../resources/testharness.js"></script> | 5 <script src="../resources/testharness.js"></script> |
| 6 <script src="../resources/testharnessreport.js"></script> | 6 <script src="../resources/testharnessreport.js"></script> |
| 7 <script src="/js-test-resources/mojo-helpers.js"></script> | 7 <script src="/js-test-resources/mojo-helpers.js"></script> |
| 8 <script src="budget-service-mock.js"></script> | 8 <script src="budget-service-mock.js"></script> |
| 9 </head> | 9 </head> |
| 10 <body> | 10 <body> |
| 11 <script> | 11 <script> |
| 12 if (!window.mojo) | |
| 13 debug('This test can not run without mojo'); | |
| 14 | |
| 15 promise_test(function() { | 12 promise_test(function() { |
| 16 return budgetServiceMock.then(mock => { | 13 return budgetServiceMock.then(mock => { |
| 17 assert_own_property(Navigator.prototype, 'budget'); | 14 assert_own_property(Navigator.prototype, 'budget'); |
| 18 mock.setCost("silent-push", TEST_BUDGET_COST); | 15 mock.setCost("silent-push", TEST_BUDGET_COST); |
| 19 return navigator.budget.getCost("silent-push"); | 16 return navigator.budget.getCost("silent-push"); |
| 20 }).then(cost => { | 17 }).then(cost => { |
| 21 assert_equals(cost, TEST_BUDGET_COST); | 18 assert_equals(cost, TEST_BUDGET_COST); |
| 22 }); | 19 }); |
| 23 }, 'BudgetService.GetCost should return correct results.'); | 20 }, 'BudgetService.GetCost should return correct results.'); |
| 24 | 21 |
| 25 promise_test(function() { | 22 promise_test(function() { |
| 26 return budgetServiceMock.then(mock => { | 23 return budgetServiceMock.then(mock => { |
| 27 assert_own_property(Navigator.prototype, 'budget'); | 24 assert_own_property(Navigator.prototype, 'budget'); |
| 28 return navigator.budget.getCost("frobinator"); | 25 return navigator.budget.getCost("frobinator"); |
| 29 }).then(cost => { | 26 }).then(cost => { |
| 30 assert_unreached('getCost should have failed with an invalid argument.
'); | 27 assert_unreached('getCost should have failed with an invalid argument.
'); |
| 31 }, function(error) { | 28 }, function(error) { |
| 32 assert_equals(error.name, 'TypeError'); | 29 assert_equals(error.name, 'TypeError'); |
| 33 assert_equals(error.message, "Failed to execute 'getCost' on 'BudgetSe
rvice': The provided value 'frobinator' is not a valid enum value of type Operat
ionType."); | 30 assert_equals(error.message, "Failed to execute 'getCost' on 'BudgetSe
rvice': The provided value 'frobinator' is not a valid enum value of type Operat
ionType."); |
| 34 }); | 31 }); |
| 35 }, 'BudgetService.GetCost should return Type Error if an invalid argument
is provided.'); | 32 }, 'BudgetService.GetCost should return Type Error if an invalid argument
is provided.'); |
| 36 </script> | 33 </script> |
| 37 </body> | 34 </body> |
| 38 </html> | 35 </html> |
| OLD | NEW |