Victor Vieux 2c8b63cb75 do not merge -i or -t options 11 роки тому
..
fixtures c000cb6471 Add authenticated TLS support for API 11 роки тому
MAINTAINERS defecac279 Fix various MAINTAINERS format inconsistencies 11 роки тому
README.md e83fc70d36 Freeze ./integration and explain where to contribute new tests 11 роки тому
api_test.go 359b7df5d2 Rename runtime/* to daemon/* 11 роки тому
auth_test.go 887eeb2b02 Skip login tests because of external dependency to a hosted service. 11 роки тому
buildfile_test.go 2aff119baa Revert "refactor build job to know only configFile" 11 роки тому
commands_test.go 2c8b63cb75 do not merge -i or -t options 11 роки тому
container_test.go ff7b52abd3 Fixes permissions on volumes when dir in container is empty 11 роки тому
graph_test.go f0e6e135a8 Initial work on selinux patch 11 роки тому
https_test.go 45be6f6dff fix https 11 роки тому
runtime_test.go 8d213e91b3 Merge pull request #5706 from vieux/remove_add_string 11 роки тому
server_test.go e304e3a662 remove addString and replace Tail 11 роки тому
sorter_test.go 359b7df5d2 Rename runtime/* to daemon/* 11 роки тому
utils_test.go e304e3a662 remove addString and replace Tail 11 роки тому
z_final_test.go 359b7df5d2 Rename runtime/* to daemon/* 11 роки тому

README.md

Legacy integration tests

./integration contains Docker's legacy integration tests. It is DEPRECATED and will eventually be removed.

If you are a CONTRIBUTOR and want to add a test:

  • Consider mocking out side effects and contributing a unit test in the subsystem you're modifying. For example, the remote API has unit tests in ./api/server/server_unit_tests.go. The events subsystem has unit tests in ./events/events_test.go. And so on.

  • For end-to-end integration tests, please contribute to ./integration-cli.

If you are a MAINTAINER

Please don't allow patches adding new tests to ./integration.

If you are LOOKING FOR A WAY TO HELP

Please consider porting tests away from ./integration and into either unit tests or CLI tests.

Any help will be greatly appreciated!