Tempest dynamic credential creates the project per test class and adds requested role users to the same project. Project members, project admins, and project readers share the same project, but the project manager does not share the same project; instead, the project ends up being created as a separate project. Fixing the same and also add the unit test. Closes-Bug: #2110507 Change-Id: I63a0395025272202bb62851b76e8ec22f5f6db24
Tempest Field Guide to Unit tests
What are these tests?
Unit tests are the self checks for Tempest. They provide functional verification and regression checking for the internal components of Tempest. They should be used to just verify that the individual pieces of Tempest are working as expected. They should not require an external service to be running and should be able to run solely from the Tempest tree.
Why are these tests in Tempest?
These tests exist to make sure that the mechanisms that we use inside of Tempest are valid and remain functional. They are only here for self validation of Tempest.
Scope of these tests
Unit tests should not require an external service to be running or any extra configuration to run. Any state that is required for a test should either be mocked out or created in a temporary test directory. (see test_wrappers.py for an example of using a temporary test directory)