├── .gitignore ├── .idea ├── .name ├── AutomationTestSupervisor.iml ├── codeStyleSettings.xml ├── dictionaries │ └── F1sherKK.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Launcher.py ├── README.md ├── config_files_dir.json ├── error └── Exceptions.py ├── git_images ├── html_dashboard_example1.png ├── html_dashboard_example2.png └── test_package_example.png ├── log_generator ├── GeneratorModels.py ├── LogGenerator.py ├── __init__.py ├── styles │ ├── logcat.css │ └── summary.css └── utils │ ├── HtmlLogcatUtils.py │ ├── HtmlResultsUtils.py │ ├── HtmlSummaryUtils.py │ └── HtmlUtils.py ├── session ├── SessionDataStores.py ├── SessionGlobalLogger.py ├── SessionManagers.py ├── SessionModels.py └── SessionThreads.py ├── settings ├── GlobalConfig.py ├── Version.py ├── loader │ ├── ArgLoader.py │ ├── AvdSetLoader.py │ ├── LaunchPlanLoader.py │ ├── PathsLoader.py │ └── TestSetLoader.py └── manifest │ ├── models │ ├── AvdManifestModels.py │ ├── LaunchManifestModels.py │ ├── PathManifestModels.py │ └── TestManifestModels.py │ └── templates │ ├── avdManifest.json │ ├── launchManifest.json │ ├── pathManifest.json │ └── testManifest.json └── system ├── bin ├── AndroidBinaryFileControllers.py ├── AndroidShellCommandAssemblers.py ├── AndroidShellCommands.py └── SystemShellCommands.py ├── buffer └── AdbCallBuffer.py ├── console ├── Color.py ├── Printer.py └── ShellHelper.py ├── file └── FileUtils.py └── port └── PortManager.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | AutomationTestSupervisor -------------------------------------------------------------------------------- /.idea/AutomationTestSupervisor.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/.idea/AutomationTestSupervisor.iml -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.idea/dictionaries/F1sherKK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/.idea/dictionaries/F1sherKK.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/Launcher.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/README.md -------------------------------------------------------------------------------- /config_files_dir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/config_files_dir.json -------------------------------------------------------------------------------- /error/Exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/error/Exceptions.py -------------------------------------------------------------------------------- /git_images/html_dashboard_example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/git_images/html_dashboard_example1.png -------------------------------------------------------------------------------- /git_images/html_dashboard_example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/git_images/html_dashboard_example2.png -------------------------------------------------------------------------------- /git_images/test_package_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/git_images/test_package_example.png -------------------------------------------------------------------------------- /log_generator/GeneratorModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/log_generator/GeneratorModels.py -------------------------------------------------------------------------------- /log_generator/LogGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/log_generator/LogGenerator.py -------------------------------------------------------------------------------- /log_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log_generator/styles/logcat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/log_generator/styles/logcat.css -------------------------------------------------------------------------------- /log_generator/styles/summary.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/log_generator/styles/summary.css -------------------------------------------------------------------------------- /log_generator/utils/HtmlLogcatUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/log_generator/utils/HtmlLogcatUtils.py -------------------------------------------------------------------------------- /log_generator/utils/HtmlResultsUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/log_generator/utils/HtmlResultsUtils.py -------------------------------------------------------------------------------- /log_generator/utils/HtmlSummaryUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/log_generator/utils/HtmlSummaryUtils.py -------------------------------------------------------------------------------- /log_generator/utils/HtmlUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/log_generator/utils/HtmlUtils.py -------------------------------------------------------------------------------- /session/SessionDataStores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/session/SessionDataStores.py -------------------------------------------------------------------------------- /session/SessionGlobalLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/session/SessionGlobalLogger.py -------------------------------------------------------------------------------- /session/SessionManagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/session/SessionManagers.py -------------------------------------------------------------------------------- /session/SessionModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/session/SessionModels.py -------------------------------------------------------------------------------- /session/SessionThreads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/session/SessionThreads.py -------------------------------------------------------------------------------- /settings/GlobalConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/GlobalConfig.py -------------------------------------------------------------------------------- /settings/Version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/Version.py -------------------------------------------------------------------------------- /settings/loader/ArgLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/loader/ArgLoader.py -------------------------------------------------------------------------------- /settings/loader/AvdSetLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/loader/AvdSetLoader.py -------------------------------------------------------------------------------- /settings/loader/LaunchPlanLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/loader/LaunchPlanLoader.py -------------------------------------------------------------------------------- /settings/loader/PathsLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/loader/PathsLoader.py -------------------------------------------------------------------------------- /settings/loader/TestSetLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/loader/TestSetLoader.py -------------------------------------------------------------------------------- /settings/manifest/models/AvdManifestModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/manifest/models/AvdManifestModels.py -------------------------------------------------------------------------------- /settings/manifest/models/LaunchManifestModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/manifest/models/LaunchManifestModels.py -------------------------------------------------------------------------------- /settings/manifest/models/PathManifestModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/manifest/models/PathManifestModels.py -------------------------------------------------------------------------------- /settings/manifest/models/TestManifestModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/manifest/models/TestManifestModels.py -------------------------------------------------------------------------------- /settings/manifest/templates/avdManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/manifest/templates/avdManifest.json -------------------------------------------------------------------------------- /settings/manifest/templates/launchManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/manifest/templates/launchManifest.json -------------------------------------------------------------------------------- /settings/manifest/templates/pathManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/manifest/templates/pathManifest.json -------------------------------------------------------------------------------- /settings/manifest/templates/testManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/settings/manifest/templates/testManifest.json -------------------------------------------------------------------------------- /system/bin/AndroidBinaryFileControllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/system/bin/AndroidBinaryFileControllers.py -------------------------------------------------------------------------------- /system/bin/AndroidShellCommandAssemblers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/system/bin/AndroidShellCommandAssemblers.py -------------------------------------------------------------------------------- /system/bin/AndroidShellCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/system/bin/AndroidShellCommands.py -------------------------------------------------------------------------------- /system/bin/SystemShellCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/system/bin/SystemShellCommands.py -------------------------------------------------------------------------------- /system/buffer/AdbCallBuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/system/buffer/AdbCallBuffer.py -------------------------------------------------------------------------------- /system/console/Color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/system/console/Color.py -------------------------------------------------------------------------------- /system/console/Printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/system/console/Printer.py -------------------------------------------------------------------------------- /system/console/ShellHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/system/console/ShellHelper.py -------------------------------------------------------------------------------- /system/file/FileUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/system/file/FileUtils.py -------------------------------------------------------------------------------- /system/port/PortManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AutomationTestSupervisor/HEAD/system/port/PortManager.py --------------------------------------------------------------------------------