Closed kaz231 closed 9 years ago
Would be also useful to:
Thanks @kaz231 for the report!
We can definitely improve things, in particular:
get
then write a clear message indicating to use integration test instead.
get*
methods. all other API methods are tested with integration tests)regarding removing the hacks: sure it would be nice to remove such technical debt, but if it's not an issue then we don't need to do it yet. Similarly we don't need to change the logic to not load all available API methods, since that's not a performance issue.
@mattab thanks for answer !
Re usage of IntegrationTestCase instead of SystemTestCase won't solve the problem, because IntegrationTestCase extends over SystemTestCase.
Re hacks: I totally agree, that's a minor. But it will be great to progressively eliminate them.
What I meant is that to test an API method, we should not use runApiTests
but rather write normal integration tests (like you would write integration tests usually), see for example: https://github.com/piwik/plugin-CustomAlerts/blob/master/tests/Integration/ApiTest.php
But it will be great to progressively eliminate them.
Definitely agree :-) feel free to submit pull requests when you stumble upon and want / can easily fix one tech debt. Reporting them is not directly helpful as it's never ending story :-)
@kaz231 I did a small fix in https://github.com/piwik/piwik/commit/f9f42f670b7d6861d35daf8efcc89e387552f5db - hopefully this would prevent someone having same problem in the future. Please keep these suggestions coming!
Steps to reproduce:
Result:
I found that problem is in class https://github.com/piwik/piwik/blob/master/tests/PHPUnit/Framework/TestRequest/Collection.php#L305. There's is condition, that checks if API method starts with "get" and if not, then skips it.