├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE ├── PULL_REQUEST_TEMPLATE └── workflows │ └── ci.yml ├── .gitignore ├── .vipgoci_options ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── RELEASING.md ├── TESTING.md ├── TOOLS-UPDATE.md ├── ap-file-types.php ├── ap-nonfunctional-changes.php ├── ap-svg-files.php ├── auto-approval.php ├── cache.php ├── cli-utils ├── README.md └── create-pull-requests.php ├── defines.php ├── docs-images ├── vipgoci-auto-approvals-approved.png ├── vipgoci-github-build-status-success.png └── vipgoci-scanning-feedback.png ├── exec.php ├── file-validation.php ├── git-repo.php ├── github-api.php ├── github-commit-status.php ├── github-misc.php ├── http-functions.php ├── latest-release.php ├── lint-reports.php ├── lint-scan.php ├── log.php ├── main.php ├── misc.php ├── options.php ├── other-utilities.php ├── other-web-services.php ├── output-security.php ├── phpcs-scan.php ├── phpunit.xml.dist ├── repo-meta-api.php ├── reports.php ├── requires.php ├── results.php ├── skip-file.php ├── statistics.php ├── svg-scan.php ├── test.bootstrap.php ├── tests ├── README.md ├── config.ini.dist ├── e2e │ └── LatestReleaseTest.php ├── integration │ ├── AllIntegrationTestsInplaceTest.php │ ├── ApFileTypesTest.php │ ├── ApNonfunctionalChangesTest.php │ ├── ApSvgFilesTest.php │ ├── AutoApprovalScanCommitTest.php │ ├── GitDiffsFetchUnfilteredTrait.php │ ├── GitHubApiLabelsTest.php │ ├── GitHubAuthenticatedUserGetTest.php │ ├── GitHubDiffsFetchUnfilteredTest.php │ ├── GitHubFetchCommitInfoTest.php │ ├── GitHubFilesAffectedByCommitTest.php │ ├── GitHubLabelsFetchTest.php │ ├── GitHubMiscPatchChangedLinesTest.php │ ├── GitHubOrgTeamsTest.php │ ├── GitHubPrGenericCommentsGetTest.php │ ├── GitHubPrGenericSupportCommentTest.php │ ├── GitHubPrReviewEventsGetTest.php │ ├── GitHubPrReviewsCommentsGetByPrTest.php │ ├── GitHubPrReviewsCommentsGetTest.php │ ├── GitHubPrReviewsGetTest.php │ ├── GitHubPrsCommitsListTest.php │ ├── GitHubPrsImplicatedTest.php │ ├── GitHubRepoCollaboratorsTest.php │ ├── GitHubStatusCreateTest.php │ ├── GitHubTeamMembersManyTest.php │ ├── GitHubTeamMembersTest.php │ ├── GitRepoBranchGetTest.php │ ├── GitRepoDiffsFetchTest.php │ ├── GitRepoDiffsFetchUnfilteredTest.php │ ├── GitRepoGitVersionTest.php │ ├── GitRepoRepoBlameForFileTest.php │ ├── GitRepoRepoFetchCommittedFileTest.php │ ├── GitRepoRepoFetchTreeTest.php │ ├── GitRepoRepoGetFileAtCommitTest.php │ ├── GitRepoRepoGetHeadTest.php │ ├── GitRepoRepoOkTest.php │ ├── GitRepoSubmoduleFilePathGetTest.php │ ├── GitRepoSubmoduleGetUrlTest.php │ ├── GitRepoSubmodulesListTest.php │ ├── GitRepoSubmodulesSetupTest.php │ ├── HttpApiFetchUrlTest.php │ ├── HttpFunctionsSunsetHeaderCheckTest.php │ ├── IncludesForTests.php │ ├── IncludesForTestsConfig.php │ ├── IncludesForTestsDefines.php │ ├── IncludesForTestsMisc.php │ ├── IncludesForTestsOutputControl.php │ ├── IncludesForTestsRepo.php │ ├── LintDoScanFileTest.php │ ├── LintScanCommitTest.php │ ├── LintScanMultipleFilesTest.php │ ├── MainRunCleanupIrcTest.php │ ├── MainRunCleanupSendPixelApiTest.php │ ├── MainRunInitGithubTokenOptionTest.php │ ├── MainRunInitOptionsPhpcsTest.php │ ├── MainRunInitOptionsRepoOptionsTest.php │ ├── MainRunInitOptionsReviewsTest.php │ ├── MainRunInitOptionsSvgTest.php │ ├── MainRunScanReviewsCommentsEnforceMaximumTest.php │ ├── MainRunScanTotalCommentsMaxWarningPostTest.php │ ├── MiscScandirGitRepoTest.php │ ├── MiscTempTest.php │ ├── OptionsFileHandleTest.php │ ├── OptionsReadEnvTest.php │ ├── OptionsReadRepoFileTest.php │ ├── OptionsReadRepoSkipFilesTest.php │ ├── OptionsTeamsTest.php │ ├── OtherUtilitiesPhpInterpreterGetVersionTest.php │ ├── PhpcsScanDoScanTest.php │ ├── PhpcsScanGetAllStandardsTest.php │ ├── PhpcsScanGetSniffsForStandardTest.php │ ├── PhpcsScanGetVersionTest.php │ ├── PhpcsScanPossiblyUseNewStandardFileTest.php │ ├── PhpcsScanScanCommitTest.php │ ├── PhpcsScanSingleFileTest.php │ ├── PhpcsScanValidateSniffsInOptionAndReportTest.php │ ├── PhpcsScanWriteXmlStandardFileTest.php │ ├── RepoMetaApiRepoMetaApiDataFetchTest.php │ ├── RepoMetaApiRepoMetaApiDataMatchTest.php │ ├── ResultsApprovedFilesCommentsRemoveTest.php │ ├── ResultsCommentsSortBySeverityTest.php │ ├── ResultsFilterCommentsToMaxTest.php │ ├── ResultsOutputDumpTest.php │ ├── ResultsRemoveExistingGithubCommentsTest.php │ ├── Skeleton.php │ ├── StatisticsRuntimeMeasureExecWithRetryTest.php │ ├── StatsStatsPerFileTest.php │ ├── SvgScanLookForSpecificTokensTest.php │ ├── SvgScanScanCommitTest.php │ ├── SvgScanScanSingleFileTest.php │ ├── SvgScanWithScannerTest.php │ ├── WpCoreApiDetermineSlugAndOtherForAddonsTest.php │ ├── WpCoreMiscCleanUpHeaderCommentTest.php │ ├── WpCoreMiscGetAddonDataAndSlugsForDirectoryTest.php │ ├── WpCoreMiscGetAddonHeadersAndTypeTest.php │ ├── WpCoreMiscGetFileWpHeadersTest.php │ ├── WpCoreMiscScanDirectoryForAddonsTest.php │ ├── WpscanApiDoScanViaApiTest.php │ ├── WpscanGetAlteredAddonsDataAndSlugsTest.php │ ├── WpscanScanCommitTest.php │ ├── WpscanScanDirsAlteredTest.php │ ├── WpscanScanFindAddonDirsAlteredTest.php │ ├── WpscanScanSaveForSubmissionTest.php │ ├── helper-files │ │ ├── WpCoreMiscGetAddonDataAndSlugsForDirectoryTest │ │ │ └── mu-plugins │ │ │ │ ├── hello │ │ │ │ └── hello.php │ │ │ │ ├── this-is-a-plugin.php │ │ │ │ ├── this-is-not-a-plugin.php │ │ │ │ └── twentytwentyone │ │ │ │ └── style.css │ │ └── WpCoreMiscScanDirectoryForAdddonsTest │ │ │ └── mu-plugins │ │ │ ├── addon1 │ │ │ ├── file1.php │ │ │ └── file2.php │ │ │ ├── addon2 │ │ │ ├── other-style.css │ │ │ └── style.css │ │ │ ├── dir3 │ │ │ └── file1.php │ │ │ ├── dir4 │ │ │ └── file2.php │ │ │ ├── this-is-a-plugin.php │ │ │ └── this-is-not-a-plugin.php │ ├── helper-scripts │ │ ├── cli-predictably-fails.php │ │ ├── cli-prints-and-exits.php │ │ └── php-linter-replacement.php │ └── helper │ │ ├── LintScanMultipleFiles.php │ │ └── ResultsFilterCommentsToMax.php ├── manual │ ├── create-all-pull-requests.sh │ └── vipgoci-run.sh.dist └── unit │ ├── AllUnitTestsInplaceTest.php │ ├── CacheCachedIndicationStrTest.php │ ├── CacheVipgociCacheTest.php │ ├── GitHubMiscBlameFilterCommentsTest.php │ ├── GitHubMiscGitHubEmojisTest.php │ ├── GitHubMiscGitHubPrRemoveDraftsTest.php │ ├── GitHubMiscGithubPrsUrlsGetTest.php │ ├── GitHubMiscMarkdownCommentAddPagebreakTest.php │ ├── GitHubVersionHeaderMaybeAddTest.php │ ├── GitRepoCommitIdVerifyTest.php │ ├── GitRepoDiffsCleanExtraWhitespaceTest.php │ ├── GitRepoGetFilePathFromDiffTest.php │ ├── HttpApiRateLimitUsageTest.php │ ├── HttpFunctionsCurlHeadersTest.php │ ├── HttpFunctionsHttpApiRateLimitsCheckTest.php │ ├── HttpFunctionsHttpApiWaitTest.php │ ├── LintParseResultsTest.php │ ├── LintScanMultipleFilesMergeResultsByPhpVersionTest.php │ ├── LintScanMultipleFilesProcessIntermediateResultsTest.php │ ├── LogSysExitTest.php │ ├── MainExitStatusTest.php │ ├── MainHelpPrintTest.php │ ├── MainRunCleanupPhpcsTest.php │ ├── MainRunEnvOptionsHandleTest.php │ ├── MainRunInitOptionsAutoapproveTest.php │ ├── MainRunInitOptionsDebugTest.php │ ├── MainRunInitOptionsLintTest.php │ ├── MainRunInitOptionsMaxExecTimeTest.php │ ├── MainRunInitOptionsPixelApiTest.php │ ├── MainRunInitOptionsPostGenericPrSupportCommentsTest.php │ ├── MainRunInitOptionsRepoMetaApiTest.php │ ├── MainRunInitOptionsSkipLargeFilesTest.php │ ├── MainRunInitOptionsWpscanTest.php │ ├── MainRunInitVarsTest.php │ ├── MainRunScanLogSkippedFilesTest.php │ ├── MainRunScanMaxExecTimeTest.php │ ├── MainRunScanSkipExecutionTest.php │ ├── MainRunTimeLengthDetermineTest.php │ ├── MiscArrayPushUniquelyTest.php │ ├── MiscConvertStringToTypeTest.php │ ├── MiscDirectoryFoundInFileListTest.php │ ├── MiscDirectoryPathMakeRelativeToBaseTest.php │ ├── MiscFileExtensionTest.php │ ├── MiscFilterFilePathTest.php │ ├── MiscFindFieldsInArrayTest.php │ ├── MiscPreviewStringTest.php │ ├── MiscRoundArrayItemsTest.php │ ├── MiscSanitizePathPrefixTest.php │ ├── MiscSanitizeStringTest.php │ ├── MiscSetMaximumExecTimeTest.php │ ├── MiscStringFoundInSubstringsArrayTest.php │ ├── MiscValidateSlugTest.php │ ├── OptionsArrayHandleTest.php │ ├── OptionsBoolHandleTest.php │ ├── OptionsGenericSupportCommentsMatchTest.php │ ├── OptionsGenericSupportCommentsProcessTest.php │ ├── OptionsGetStartingWithTest.php │ ├── OptionsIntegerHandleTest.php │ ├── OptionsPhpcsRuntimeSetTest.php │ ├── OptionsReadRepositoryConfigFileTest.php │ ├── OptionsRecognizedTest.php │ ├── OptionsSensitiveCleanTest.php │ ├── OptionsSkipFolderHandleTest.php │ ├── OtherWebServicesIrcApiAlertQueueTest.php │ ├── OtherWebServicesIrcApiAlertQueueUniqueTest.php │ ├── OtherWebServicesIrcApiCleanIgnorableConstantsTest.php │ ├── OtherWebServicesIrcApiFilterIgnorableStringsTest.php │ ├── OtherWebServicesSendStatsToPixelApiTest.php │ ├── OutputSecurityMarkdownEscapeTest.php │ ├── OutputSecuritySanitizeHtmlEscapeTest.php │ ├── OutputSecuritySanitizeUrlTest.php │ ├── OutputSecuritySanitizeVersionNumberTest.php │ ├── ReportCreateScanDetailsAutoApproveConfigurationTest.php │ ├── ReportCreateScanDetailsListTest.php │ ├── ReportCreateScanDetailsPhpLintOptionsTest.php │ ├── ReportCreateScanDetailsPhpcsConfigurationTest.php │ ├── ReportCreateScanDetailsSoftwareVersionsTest.php │ ├── ReportCreateScanDetailsSvgConfigurationTest.php │ ├── ReportCreateScanDetailsWpscanConfigurationTest.php │ ├── ReportResultsToGithubWereSubmittedTest.php │ ├── ResultsCommentMatchTest.php │ ├── ResultsFilterDuplicateTest.php │ ├── ResultsFilterIgnorableTest.php │ ├── ResultsFilterIrrellevantTest.php │ ├── ResultsStandardizeIgnorableMessageTest.php │ ├── Skeleton.php │ ├── SkipFileTestFunctionalityTest.php │ ├── StatisticsCounterUpdateWithIssuesFoundTest.php │ ├── StatisticsCountersTest.php │ ├── StatisticsRuntimeMeasureTest.php │ ├── StatsStatsInitTest.php │ ├── WpCoreMiscAssignAddonFieldsTest.php │ ├── WpCoreMiscDetermineLocalSlugTest.php │ ├── WpCoreMiscGetAddonsNotAlteredTest.php │ ├── WpscanApiFilterFixedVulnerabilitiesTest.php │ ├── WpscanReportCommentFormatResultTest.php │ ├── WpscanReportEndTest.php │ ├── WpscanReportFormatCvssScoreTest.php │ ├── WpscanReportStartTest.php │ └── helper │ ├── CheckIrcApiAlertQueue.php │ ├── CheckPcntlSupport.php │ ├── GitRepoDiffsFetch.php │ ├── HttpFunctionsHttpApiRateLimitsCheck.php │ ├── IndicateTestId.php │ ├── IrcApiAlertQueue.php │ ├── MainRunInitOptionsAutoapprove.php │ ├── MainRunInitOptionsLint.php │ ├── OptionsArrayHandle.php │ ├── OptionsReadRepositoryConfigFile.php │ ├── OtherWebServicesSendStatsToPixelApi.php │ ├── ReportCreateScanDetails.php │ ├── RuntimeMeasure.php │ └── WpCoreMiscAssignAddonFields.php ├── tools-init.sh ├── vip-go-ci.php ├── wp-core-misc.php ├── wpscan-api.php ├── wpscan-reports.php └── wpscan-scan.php /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/.gitignore -------------------------------------------------------------------------------- /.vipgoci_options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/.vipgoci_options -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/RELEASING.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/TESTING.md -------------------------------------------------------------------------------- /TOOLS-UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/TOOLS-UPDATE.md -------------------------------------------------------------------------------- /ap-file-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/ap-file-types.php -------------------------------------------------------------------------------- /ap-nonfunctional-changes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/ap-nonfunctional-changes.php -------------------------------------------------------------------------------- /ap-svg-files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/ap-svg-files.php -------------------------------------------------------------------------------- /auto-approval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/auto-approval.php -------------------------------------------------------------------------------- /cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/cache.php -------------------------------------------------------------------------------- /cli-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/cli-utils/README.md -------------------------------------------------------------------------------- /cli-utils/create-pull-requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/cli-utils/create-pull-requests.php -------------------------------------------------------------------------------- /defines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/defines.php -------------------------------------------------------------------------------- /docs-images/vipgoci-auto-approvals-approved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/docs-images/vipgoci-auto-approvals-approved.png -------------------------------------------------------------------------------- /docs-images/vipgoci-github-build-status-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/docs-images/vipgoci-github-build-status-success.png -------------------------------------------------------------------------------- /docs-images/vipgoci-scanning-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/docs-images/vipgoci-scanning-feedback.png -------------------------------------------------------------------------------- /exec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/exec.php -------------------------------------------------------------------------------- /file-validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/file-validation.php -------------------------------------------------------------------------------- /git-repo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/git-repo.php -------------------------------------------------------------------------------- /github-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/github-api.php -------------------------------------------------------------------------------- /github-commit-status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/github-commit-status.php -------------------------------------------------------------------------------- /github-misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/github-misc.php -------------------------------------------------------------------------------- /http-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/http-functions.php -------------------------------------------------------------------------------- /latest-release.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/latest-release.php -------------------------------------------------------------------------------- /lint-reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/lint-reports.php -------------------------------------------------------------------------------- /lint-scan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/lint-scan.php -------------------------------------------------------------------------------- /log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/log.php -------------------------------------------------------------------------------- /main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/main.php -------------------------------------------------------------------------------- /misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/misc.php -------------------------------------------------------------------------------- /options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/options.php -------------------------------------------------------------------------------- /other-utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/other-utilities.php -------------------------------------------------------------------------------- /other-web-services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/other-web-services.php -------------------------------------------------------------------------------- /output-security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/output-security.php -------------------------------------------------------------------------------- /phpcs-scan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/phpcs-scan.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /repo-meta-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/repo-meta-api.php -------------------------------------------------------------------------------- /reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/reports.php -------------------------------------------------------------------------------- /requires.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/requires.php -------------------------------------------------------------------------------- /results.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/results.php -------------------------------------------------------------------------------- /skip-file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/skip-file.php -------------------------------------------------------------------------------- /statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/statistics.php -------------------------------------------------------------------------------- /svg-scan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/svg-scan.php -------------------------------------------------------------------------------- /test.bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/test.bootstrap.php -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/config.ini.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/config.ini.dist -------------------------------------------------------------------------------- /tests/e2e/LatestReleaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/e2e/LatestReleaseTest.php -------------------------------------------------------------------------------- /tests/integration/AllIntegrationTestsInplaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/AllIntegrationTestsInplaceTest.php -------------------------------------------------------------------------------- /tests/integration/ApFileTypesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/ApFileTypesTest.php -------------------------------------------------------------------------------- /tests/integration/ApNonfunctionalChangesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/ApNonfunctionalChangesTest.php -------------------------------------------------------------------------------- /tests/integration/ApSvgFilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/ApSvgFilesTest.php -------------------------------------------------------------------------------- /tests/integration/AutoApprovalScanCommitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/AutoApprovalScanCommitTest.php -------------------------------------------------------------------------------- /tests/integration/GitDiffsFetchUnfilteredTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitDiffsFetchUnfilteredTrait.php -------------------------------------------------------------------------------- /tests/integration/GitHubApiLabelsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubApiLabelsTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubAuthenticatedUserGetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubAuthenticatedUserGetTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubDiffsFetchUnfilteredTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubDiffsFetchUnfilteredTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubFetchCommitInfoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubFetchCommitInfoTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubFilesAffectedByCommitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubFilesAffectedByCommitTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubLabelsFetchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubLabelsFetchTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubMiscPatchChangedLinesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubMiscPatchChangedLinesTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubOrgTeamsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubOrgTeamsTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubPrGenericCommentsGetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubPrGenericCommentsGetTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubPrGenericSupportCommentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubPrGenericSupportCommentTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubPrReviewEventsGetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubPrReviewEventsGetTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubPrReviewsCommentsGetByPrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubPrReviewsCommentsGetByPrTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubPrReviewsCommentsGetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubPrReviewsCommentsGetTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubPrReviewsGetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubPrReviewsGetTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubPrsCommitsListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubPrsCommitsListTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubPrsImplicatedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubPrsImplicatedTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubRepoCollaboratorsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubRepoCollaboratorsTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubStatusCreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubStatusCreateTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubTeamMembersManyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubTeamMembersManyTest.php -------------------------------------------------------------------------------- /tests/integration/GitHubTeamMembersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitHubTeamMembersTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoBranchGetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoBranchGetTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoDiffsFetchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoDiffsFetchTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoDiffsFetchUnfilteredTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoDiffsFetchUnfilteredTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoGitVersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoGitVersionTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoRepoBlameForFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoRepoBlameForFileTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoRepoFetchCommittedFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoRepoFetchCommittedFileTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoRepoFetchTreeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoRepoFetchTreeTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoRepoGetFileAtCommitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoRepoGetFileAtCommitTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoRepoGetHeadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoRepoGetHeadTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoRepoOkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoRepoOkTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoSubmoduleFilePathGetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoSubmoduleFilePathGetTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoSubmoduleGetUrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoSubmoduleGetUrlTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoSubmodulesListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoSubmodulesListTest.php -------------------------------------------------------------------------------- /tests/integration/GitRepoSubmodulesSetupTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/GitRepoSubmodulesSetupTest.php -------------------------------------------------------------------------------- /tests/integration/HttpApiFetchUrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/HttpApiFetchUrlTest.php -------------------------------------------------------------------------------- /tests/integration/HttpFunctionsSunsetHeaderCheckTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/HttpFunctionsSunsetHeaderCheckTest.php -------------------------------------------------------------------------------- /tests/integration/IncludesForTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/IncludesForTests.php -------------------------------------------------------------------------------- /tests/integration/IncludesForTestsConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/IncludesForTestsConfig.php -------------------------------------------------------------------------------- /tests/integration/IncludesForTestsDefines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/IncludesForTestsDefines.php -------------------------------------------------------------------------------- /tests/integration/IncludesForTestsMisc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/IncludesForTestsMisc.php -------------------------------------------------------------------------------- /tests/integration/IncludesForTestsOutputControl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/IncludesForTestsOutputControl.php -------------------------------------------------------------------------------- /tests/integration/IncludesForTestsRepo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/IncludesForTestsRepo.php -------------------------------------------------------------------------------- /tests/integration/LintDoScanFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/LintDoScanFileTest.php -------------------------------------------------------------------------------- /tests/integration/LintScanCommitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/LintScanCommitTest.php -------------------------------------------------------------------------------- /tests/integration/LintScanMultipleFilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/LintScanMultipleFilesTest.php -------------------------------------------------------------------------------- /tests/integration/MainRunCleanupIrcTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/MainRunCleanupIrcTest.php -------------------------------------------------------------------------------- /tests/integration/MainRunCleanupSendPixelApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/MainRunCleanupSendPixelApiTest.php -------------------------------------------------------------------------------- /tests/integration/MainRunInitGithubTokenOptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/MainRunInitGithubTokenOptionTest.php -------------------------------------------------------------------------------- /tests/integration/MainRunInitOptionsPhpcsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/MainRunInitOptionsPhpcsTest.php -------------------------------------------------------------------------------- /tests/integration/MainRunInitOptionsRepoOptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/MainRunInitOptionsRepoOptionsTest.php -------------------------------------------------------------------------------- /tests/integration/MainRunInitOptionsReviewsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/MainRunInitOptionsReviewsTest.php -------------------------------------------------------------------------------- /tests/integration/MainRunInitOptionsSvgTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/MainRunInitOptionsSvgTest.php -------------------------------------------------------------------------------- /tests/integration/MainRunScanReviewsCommentsEnforceMaximumTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/MainRunScanReviewsCommentsEnforceMaximumTest.php -------------------------------------------------------------------------------- /tests/integration/MainRunScanTotalCommentsMaxWarningPostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/MainRunScanTotalCommentsMaxWarningPostTest.php -------------------------------------------------------------------------------- /tests/integration/MiscScandirGitRepoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/MiscScandirGitRepoTest.php -------------------------------------------------------------------------------- /tests/integration/MiscTempTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/MiscTempTest.php -------------------------------------------------------------------------------- /tests/integration/OptionsFileHandleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/OptionsFileHandleTest.php -------------------------------------------------------------------------------- /tests/integration/OptionsReadEnvTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/OptionsReadEnvTest.php -------------------------------------------------------------------------------- /tests/integration/OptionsReadRepoFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/OptionsReadRepoFileTest.php -------------------------------------------------------------------------------- /tests/integration/OptionsReadRepoSkipFilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/OptionsReadRepoSkipFilesTest.php -------------------------------------------------------------------------------- /tests/integration/OptionsTeamsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/OptionsTeamsTest.php -------------------------------------------------------------------------------- /tests/integration/OtherUtilitiesPhpInterpreterGetVersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/OtherUtilitiesPhpInterpreterGetVersionTest.php -------------------------------------------------------------------------------- /tests/integration/PhpcsScanDoScanTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/PhpcsScanDoScanTest.php -------------------------------------------------------------------------------- /tests/integration/PhpcsScanGetAllStandardsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/PhpcsScanGetAllStandardsTest.php -------------------------------------------------------------------------------- /tests/integration/PhpcsScanGetSniffsForStandardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/PhpcsScanGetSniffsForStandardTest.php -------------------------------------------------------------------------------- /tests/integration/PhpcsScanGetVersionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/PhpcsScanGetVersionTest.php -------------------------------------------------------------------------------- /tests/integration/PhpcsScanPossiblyUseNewStandardFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/PhpcsScanPossiblyUseNewStandardFileTest.php -------------------------------------------------------------------------------- /tests/integration/PhpcsScanScanCommitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/PhpcsScanScanCommitTest.php -------------------------------------------------------------------------------- /tests/integration/PhpcsScanSingleFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/PhpcsScanSingleFileTest.php -------------------------------------------------------------------------------- /tests/integration/PhpcsScanValidateSniffsInOptionAndReportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/PhpcsScanValidateSniffsInOptionAndReportTest.php -------------------------------------------------------------------------------- /tests/integration/PhpcsScanWriteXmlStandardFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/PhpcsScanWriteXmlStandardFileTest.php -------------------------------------------------------------------------------- /tests/integration/RepoMetaApiRepoMetaApiDataFetchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/RepoMetaApiRepoMetaApiDataFetchTest.php -------------------------------------------------------------------------------- /tests/integration/RepoMetaApiRepoMetaApiDataMatchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/RepoMetaApiRepoMetaApiDataMatchTest.php -------------------------------------------------------------------------------- /tests/integration/ResultsApprovedFilesCommentsRemoveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/ResultsApprovedFilesCommentsRemoveTest.php -------------------------------------------------------------------------------- /tests/integration/ResultsCommentsSortBySeverityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/ResultsCommentsSortBySeverityTest.php -------------------------------------------------------------------------------- /tests/integration/ResultsFilterCommentsToMaxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/ResultsFilterCommentsToMaxTest.php -------------------------------------------------------------------------------- /tests/integration/ResultsOutputDumpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/ResultsOutputDumpTest.php -------------------------------------------------------------------------------- /tests/integration/ResultsRemoveExistingGithubCommentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/ResultsRemoveExistingGithubCommentsTest.php -------------------------------------------------------------------------------- /tests/integration/Skeleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/Skeleton.php -------------------------------------------------------------------------------- /tests/integration/StatisticsRuntimeMeasureExecWithRetryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/StatisticsRuntimeMeasureExecWithRetryTest.php -------------------------------------------------------------------------------- /tests/integration/StatsStatsPerFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/StatsStatsPerFileTest.php -------------------------------------------------------------------------------- /tests/integration/SvgScanLookForSpecificTokensTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/SvgScanLookForSpecificTokensTest.php -------------------------------------------------------------------------------- /tests/integration/SvgScanScanCommitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/SvgScanScanCommitTest.php -------------------------------------------------------------------------------- /tests/integration/SvgScanScanSingleFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/SvgScanScanSingleFileTest.php -------------------------------------------------------------------------------- /tests/integration/SvgScanWithScannerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/SvgScanWithScannerTest.php -------------------------------------------------------------------------------- /tests/integration/WpCoreApiDetermineSlugAndOtherForAddonsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpCoreApiDetermineSlugAndOtherForAddonsTest.php -------------------------------------------------------------------------------- /tests/integration/WpCoreMiscCleanUpHeaderCommentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpCoreMiscCleanUpHeaderCommentTest.php -------------------------------------------------------------------------------- /tests/integration/WpCoreMiscGetAddonDataAndSlugsForDirectoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpCoreMiscGetAddonDataAndSlugsForDirectoryTest.php -------------------------------------------------------------------------------- /tests/integration/WpCoreMiscGetAddonHeadersAndTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpCoreMiscGetAddonHeadersAndTypeTest.php -------------------------------------------------------------------------------- /tests/integration/WpCoreMiscGetFileWpHeadersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpCoreMiscGetFileWpHeadersTest.php -------------------------------------------------------------------------------- /tests/integration/WpCoreMiscScanDirectoryForAddonsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpCoreMiscScanDirectoryForAddonsTest.php -------------------------------------------------------------------------------- /tests/integration/WpscanApiDoScanViaApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpscanApiDoScanViaApiTest.php -------------------------------------------------------------------------------- /tests/integration/WpscanGetAlteredAddonsDataAndSlugsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpscanGetAlteredAddonsDataAndSlugsTest.php -------------------------------------------------------------------------------- /tests/integration/WpscanScanCommitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpscanScanCommitTest.php -------------------------------------------------------------------------------- /tests/integration/WpscanScanDirsAlteredTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpscanScanDirsAlteredTest.php -------------------------------------------------------------------------------- /tests/integration/WpscanScanFindAddonDirsAlteredTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpscanScanFindAddonDirsAlteredTest.php -------------------------------------------------------------------------------- /tests/integration/WpscanScanSaveForSubmissionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/WpscanScanSaveForSubmissionTest.php -------------------------------------------------------------------------------- /tests/integration/helper-files/WpCoreMiscGetAddonDataAndSlugsForDirectoryTest/mu-plugins/hello/hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/helper-files/WpCoreMiscGetAddonDataAndSlugsForDirectoryTest/mu-plugins/hello/hello.php -------------------------------------------------------------------------------- /tests/integration/helper-files/WpCoreMiscGetAddonDataAndSlugsForDirectoryTest/mu-plugins/this-is-a-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/helper-files/WpCoreMiscGetAddonDataAndSlugsForDirectoryTest/mu-plugins/this-is-a-plugin.php -------------------------------------------------------------------------------- /tests/integration/helper-files/WpCoreMiscGetAddonDataAndSlugsForDirectoryTest/mu-plugins/this-is-not-a-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/helper-files/WpCoreMiscGetAddonDataAndSlugsForDirectoryTest/mu-plugins/this-is-not-a-plugin.php -------------------------------------------------------------------------------- /tests/integration/helper-files/WpCoreMiscGetAddonDataAndSlugsForDirectoryTest/mu-plugins/twentytwentyone/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/vip-go-ci/HEAD/tests/integration/helper-files/WpCoreMiscGetAddonDataAndSlugsForDirectoryTest/mu-plugins/twentytwentyone/style.css -------------------------------------------------------------------------------- /tests/integration/helper-files/WpCoreMiscScanDirectoryForAdddonsTest/mu-plugins/addon1/file1.php: -------------------------------------------------------------------------------- 1 |