-
Couldn't load subscription status.
- Fork 841
Closed
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
Hello, I'm trying to obtain list of files that were touched(changed, added,removed,modified..) between two commits.
Here is my code
mainBranchCommit, err := repo.CommitObject(baseCommitHash) if err != nil { return modifiedFilesSlice, err } featureBranchCommit, err := repo.CommitObject(featureCommitHash) if err != nil { return modifiedFilesSlice, err } patch, err := mainBranchCommit.Patch(featureBranchCommit) if err != nil { return modifiedFilesSlice, err } fileStats := patch.Stats() scanner := bufio.NewScanner(strings.NewReader(fileStats.String())) Line fileStats.String() triggers panic: strings: negative Repeat count.
Is it my approach to problem or bug with library ?
My git: git version 2.20.1 (Apple Git-117)
Go: go version go1.15.1 darwin/amd64
Also I'm adding output from git client so it may help someone debug problem
$ git diff --stat 467d14c1 2f9462ae appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- backend/src/ApppBundle/Resources/config/doctrine/TC.orm.yml | 5 ++++- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/AiqaBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/AiqaBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- backend/src/ApppBundle/Resources/config/doctrine/TC.orm.yml | 5 ++++- backend/src/ApppBundle/RestApi/SrcAll/GetList.php | 2 +- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- backend/src/ApppBundle/Resources/config/doctrine/TC.orm.yml | 5 ++++- backend/src/ApppBundle/RestApi/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/RestApi/SrcAll/Post.php | 40 +++++++++++++++++++++++++--------------- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/AiqaBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- backend/src/ApppBundle/Resources/config/doctrine/TC.orm.yml | 5 ++++- backend/src/ApppBundle/RestApi/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/RestApi/SrcAll/Post.php | 40 +++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/SrcAll/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- backend/src/ApppBundle/Resources/config/doctrine/TC.orm.yml | 5 ++++- backend/src/ApppBundle/RestApi/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/RestApi/SrcAll/Post.php | 40 +++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/SrcAll/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/RestApi/TC/GetList.php | 2 +- backend/src/ApppBundle/RestApi/TC/Post.php | 41 ++++++++++++++++++++++++++--------------- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- backend/src/ApppBundle/Resources/config/doctrine/TC.orm.yml | 5 ++++- backend/src/ApppBundle/RestApi/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/RestApi/SrcAll/Post.php | 40 +++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/SrcAll/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/RestApi/TC/GetList.php | 2 +- backend/src/ApppBundle/RestApi/TC/Post.php | 41 ++++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/TC/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Tools/Utilities/FailedTests/MergeStrategyUnifier.php | 43 ++++--------------------------------------- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- backend/src/ApppBundle/Resources/config/doctrine/TC.orm.yml | 5 ++++- backend/src/ApppBundle/RestApi/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/RestApi/SrcAll/Post.php | 40 +++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/SrcAll/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/RestApi/TC/GetList.php | 2 +- backend/src/ApppBundle/RestApi/TC/Post.php | 41 ++++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/TC/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Tools/Utilities/FailedTests/MergeStrategyUnifier.php | 43 ++++--------------------------------------- behat/_ci_appp.sh | 8 ++++---- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- backend/src/ApppBundle/Resources/config/doctrine/TC.orm.yml | 5 ++++- backend/src/ApppBundle/RestApi/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/RestApi/SrcAll/Post.php | 40 +++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/SrcAll/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/RestApi/TC/GetList.php | 2 +- backend/src/ApppBundle/RestApi/TC/Post.php | 41 ++++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/TC/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Tools/Utilities/FailedTests/MergeStrategyUnifier.php | 43 ++++--------------------------------------- behat/_ci_aiqa.sh | 8 ++++---- behat/features/api/build/prediction/get_tests_strategies_for_empty_project.feature | 2 +- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- backend/src/ApppBundle/Resources/config/doctrine/TC.orm.yml | 5 ++++- backend/src/ApppBundle/RestApi/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/RestApi/SrcAll/Post.php | 40 +++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/SrcAll/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/RestApi/TC/GetList.php | 2 +- backend/src/ApppBundle/RestApi/TC/Post.php | 41 ++++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/TC/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Tools/Utilities/FailedTests/MergeStrategyUnifier.php | 43 ++++--------------------------------------- behat/_ci_appp.sh | 8 ++++---- behat/features/api/build/prediction/get_tests_strategies_for_empty_project.feature | 2 +- behat/features/api/build/prediction/get_tests_strategy_from_project_config.feature | 2 +- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- backend/src/ApppBundle/Resources/config/doctrine/TC.orm.yml | 5 ++++- backend/src/ApppBundle/RestApi/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/RestApi/SrcAll/Post.php | 40 +++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/SrcAll/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/RestApi/TC/GetList.php | 2 +- backend/src/ApppBundle/RestApi/TC/Post.php | 41 ++++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/TC/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Tools/Utilities/FailedTests/MergeStrategyUnifier.php | 43 ++++--------------------------------------- behat/_ci_appp.sh | 8 ++++---- behat/features/api/build/prediction/get_tests_strategies_for_empty_project.feature | 2 +- behat/features/api/build/prediction/get_tests_strategy_from_project_config.feature | 2 +- behat/features/api/build/prediction/strategy_changedTests.feature | 8 ++++---- :...skipping... appp-configs/appp/pawel/app-appp-tech/appp.yml | 2 +- backend/app/DoctrineMigrations/Version20200930084310.php | 39 --------------------------------------- backend/app/DoctrineMigrations/Version20200930090608.php | 37 ------------------------------------- backend/app/DoctrineMigrations/Version20200930110322.php | 39 --------------------------------------- backend/src/ApppBundle/Controller/SrcAll/Get.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Post.php | 2 +- backend/src/ApppBundle/Controller/SrcAll/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Controller/TC/Get.php | 2 +- backend/src/ApppBundle/Controller/TC/GetList.php | 2 +- backend/src/ApppBundle/Controller/TC/Post.php | 2 +- backend/src/ApppBundle/Controller/TC/Put.php | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Entity/GlobalFileList.php | 4 ++-- backend/src/ApppBundle/Entity/SrcAll.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Entity/TC.php | 57 +++++++++++++++++++++++++++++++++++++++++++-------------- backend/src/ApppBundle/Resources/config/doctrine/SrcAll.orm.yml | 5 ++++- backend/src/ApppBundle/Resources/config/doctrine/TC.orm.yml | 5 ++++- backend/src/ApppBundle/RestApi/SrcAll/GetList.php | 2 +- backend/src/ApppBundle/RestApi/SrcAll/Post.php | 40 +++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/SrcAll/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/RestApi/TC/GetList.php | 2 +- backend/src/ApppBundle/RestApi/TC/Post.php | 41 ++++++++++++++++++++++++++--------------- backend/src/ApppBundle/RestApi/TC/Put.php | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ backend/src/ApppBundle/Tools/Utilities/FailedTests/MergeStrategyUnifier.php | 43 ++++--------------------------------------- behat/_ci_appp.sh | 8 ++++---- behat/features/api/build/prediction/get_tests_strategies_for_empty_project.feature | 2 +- behat/features/api/build/prediction/get_tests_strategy_from_project_config.feature | 2 +- behat/features/api/build/prediction/strategy_changedTests.feature | 8 ++++---- behat/features/api/build/prediction/strategy_full_set.feature | 10 +++++----- behat/features/api/build/prediction/strategy_map.feature | 8 ++++---- behat/features/api/build/prediction/strategy_none.feature | 8 ++++---- behat/features/api/build/prediction/strategy_one.feature | 8 ++++---- behat/features/api/build/prediction/strategy_random1.feature | 6 +++--- behat/features/api/build/prediction/strategy_random3.feature | 10 +++++----- behat/features/api/build/prediction/strategy_smoke.feature | 8 ++++---- behat/features/api/build/prediction/strategy_srcTags.feature | 8 ++++---- behat/features/api/build/prediction/strategy_tags.feature | 6 +++--- behat/features/api/project/prediction/get_tests_strategies_empty_project.feature | 8 ++++---- behat/features/api/project/prediction/role_only_prediction.feature | 2 +- behat/features/api/project/prediction/strategy_none.feature | 6 +++--- behat/features/api/project/prediction/strategy_random.feature | 20 ++++++++++---------- behat/features/api/project/prediction/strategy_random1.feature | 8 ++++---- behat/features/api/project/prediction/strategy_random3.feature | 8 ++++---- behat/features/api/project/prediction/strategy_srcTags.feature | 6 +++--- behat/features/api/project/prediction/strategy_tags.feature | 28 ++++++++++++++-------------- behat/features/api/srcAll/authorization/admin_put.feature | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ behat/features/api/srcAll/authorization/unauthorized_put.feature | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ behat/features/api/srcAll/crud/put.feature | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ behat/features/api/srcAll/miscellaneous/put_wrong_path.feature | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ behat/features/api/srcAll/miscellaneous/use_token_to_put.feature | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ behat/features/api/tc/authorization/admin_put.feature | 41 +++++++++++++++++++++++++++++++++++++++++ behat/features/api/tc/authorization/unauthorized_put.feature | 36 ++++++++++++++++++++++++++++++++++++ behat/features/api/tc/crud/put.feature | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ behat/features/api/tc/miscellaneous/create_repeated_data.feature | 33 +++++++++++++++++++++++++++++++++ behat/features/api/tc/miscellaneous/put_wrong_path.feature | 42 ++++++++++++++++++++++++++++++++++++++++++ behat/features/api/tc/miscellaneous/use_token_to_put.feature | 36 ++++++++++++++++++++++++++++++++++++ documentation/redoc/response/srcAll.json | 14 +++----------- documentation/redoc/response/srcAll_array.json | 14 +++----------- documentation/redoc/response/tc.json | 14 +++----------- documentation/redoc/response/tc_array.json | 14 +++----------- json-schema/response/srcAll.json | 14 +++----------- json-schema/response/srcAll_array.json | 14 +++----------- json-schema/response/tc.json | 15 ++++----------- json-schema/response/tc_array.json | 15 ++++----------- json-schema/response/tests_prediction.json | 20 -------------------- mysqldump/appp.sql | 39 ++++++++++++++++++++++++--------------- 66 files changed, 1061 insertions(+), 437 deletions(-) huguesalary
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed