User:DWalden (WMF)/Test2wiki k8s migration/How to
Appearance
What is already installed on test2wiki?
[edit]https://test2.wikipedia.org/wiki/Special:Version
Bear in mind that the above list might not include all your application's dependencies.
Find pre-existing Selenium tests
[edit]- If you checkout the extension or look at it on gerrit, see if it has a subfolder called
tests/selenium
.- The actual Selenium tests are in the files in
tests/selenium/specs
- The actual Selenium tests are in the files in
Find pre-existing API tests
[edit]- If you checkout the extension or look at it on gerrit, see if it has a subfolder called
tests/api-testing
.- Tests against the Action API will be in the subfolder
action/
- Tests against the REST API will be in the subfolder
REST/
- Tests against the Action API will be in the subfolder
Find out if my feature/extension does back-end processing
[edit]- Ask the developers!
- For DeferredUpdates: search in the code of your feature/extension for the term
DeferredUpdates
. For example: https://codesearch.wmcloud.org/search/?q=DeferredUpdates - For Jobs/Job queue: search in the code for
JobQueueGroup
. For example: https://codesearch.wmcloud.org/search/?q=JobQueueGroup- You can use https://codesearch.wmcloud.org, which will allow you to refine your search to specific repositories.
Find out if my feature/extension uses external binaries
[edit]- Ask the developers!
- Search in the code of your feature/extension for the term
Shell
. For example: https://codesearch.wmcloud.org/search/?q=Shell- You can use https://codesearch.wmcloud.org, which will allow you to refine your search to specific repositories.