-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make integration testing a first class citizen #244
Comments
hmm. we could also potentially eliminate a lot of the mocked OSBAPI requests and responses in our current integration tests. I'm already liking the sound of this. Unfortunately, this feels like an architecture change that would need to happen in a 2.x timeframe. |
This relates to discussion with @Albertoimpl at https://gitter.im/spring-cloud-app-broker/community?at=5e67a04585f81e18a8f917ff +1 for making it easy for authors to test their brokers with a generic life cycle (provision, bind, unbing, update, unprovision), and possibly common fixtures for custom assertions on brokered apps/services, in addition to black box assertions from the returned service bindings. As an app broker user, I would not be confident with smoke or acceptance tests that diverge much from the target runtime environment. Osb API is quite versatile, and testing a broker outside of a reference OSB client (CAPI or K8S svcat) seems risky. In other words, replacing CAPI calls with OSB API calls (e.g. with an OSB client discussed at spring-cloud/spring-cloud-open-service-broker#77, see sample osbclient impl and its test suite ) would expose authors to risks that such calls get incompatible with CF-originating OSB calls, and that bugs get undetected by the test and slip through to end-users. I would therefore suggest to make part of the spring-cloud-app-broker-acceptance-tests easily accessible to broker authors, and illustrate this with an example in the spring-cloud-samples/spring-cloud-app-broker-samples repo |
Related to #350 |
App Broker users should be able to test their service configuration without invoking the OSBAPI.
For example, if I have configuration like the following:
I should be able to write an integration test that looks something like:
This would enable tests that are typically written as acceptance tests to be run on a developer's machine. The tests could be run without having to deploy the service broker and without all the pain that comes from invoking the service broker through CAPI.
The text was updated successfully, but these errors were encountered: