-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[QA][Code Coverage] Coverage teams lookup
- Loading branch information
1 parent
9bc603e
commit 9b64852
Showing
34 changed files
with
15,061 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
127 changes: 127 additions & 0 deletions
127
src/dev/code_coverage/ingest_coverage/__tests__/enumerate_patterns.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import expect from '@kbn/expect'; | ||
import { enumeratePatterns } from '../team_assignment/enumerate_patterns'; | ||
import { resolve } from 'path'; | ||
import { ToolingLog } from '@kbn/dev-utils'; | ||
|
||
const ROOT = resolve(__dirname, '../../../../..'); | ||
const log = new ToolingLog({ | ||
level: 'info', | ||
writeTo: process.stdout, | ||
}); | ||
|
||
describe(`enumeratePatterns`, () => { | ||
it(`should enumerate`, () => { | ||
const res = enumeratePatterns(ROOT)(log)(patternsMap()); | ||
const actual = res[0][0]; | ||
expect(actual).to.eql(expected()[0][0]); | ||
}); | ||
it(`should not throw an unhandled error on a file path that is a glob, that expands to nothing`, () => { | ||
const absoluteRoot = '/Users/tre/development/projects/kibana'; | ||
expect( | ||
enumeratePatterns(absoluteRoot)(log)( | ||
new Map([ | ||
[ | ||
'src/legacy/core_plugins/kibana/public/home/*.ts', | ||
{ | ||
coverageOwner: 'kibana-core-ui', | ||
excludeFiles: [], | ||
}, | ||
], | ||
]) | ||
) | ||
).to.eql(''); | ||
}); | ||
it(`should resolve x-pack/plugins/reporting/server/browsers/extract/unzip.js to kibana-reporting`, () => { | ||
const actual = enumeratePatterns(ROOT)(log)( | ||
new Map([ | ||
[ | ||
'x-pack/plugins/reporting', | ||
{ | ||
coverageOwner: 'kibana-reporting', | ||
excludeFiles: [], | ||
}, | ||
], | ||
]) | ||
); | ||
|
||
expect( | ||
actual[0].includes( | ||
'x-pack/plugins/reporting/server/browsers/extract/unzip.js kibana-reporting' | ||
) | ||
).to.be(true); | ||
}); | ||
}); | ||
|
||
function patternsMap() { | ||
return new Map([ | ||
[ | ||
'src/dev/code_coverage', | ||
{ | ||
coverageOwner: 'kibana-qa', | ||
excludeFiles: [], | ||
}, | ||
], | ||
[ | ||
'vars/kibanaCoverage.groovy', | ||
{ | ||
coverageOwner: 'kibana-qa', | ||
excludeFiles: [], | ||
}, | ||
], | ||
[ | ||
'vars/kibanaTeamAssign.groovy', | ||
{ | ||
coverageOwner: 'kibana-qa', | ||
excludeFiles: [], | ||
}, | ||
], | ||
]); | ||
} | ||
|
||
function expected() { | ||
return [ | ||
[ | ||
'src/dev/code_coverage/ingest_coverage/constants.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/either.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/index.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/ingest-coverage_wallaby.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/ingest.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/ingest_helpers.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/integration_tests/ingest_coverage.test.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/json_stream.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/matching.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/maybe.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/process.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/team_assignment/enumerate_patterns.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/team_assignment/enumeration_helpers.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/team_assignment/flush.ts kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/team_assignment/generate_assignments.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/team_assignment/generate_patterns.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/team_assignment/get_data.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/team_assignment/index.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/transforms.js kibana-qa', | ||
'src/dev/code_coverage/ingest_coverage/utils.js kibana-qa', | ||
'src/dev/code_coverage/nyc_config/nyc.functional.config.js kibana-qa', | ||
'src/dev/code_coverage/nyc_config/nyc.jest.config.js kibana-qa', | ||
], | ||
]; | ||
} |
59 changes: 59 additions & 0 deletions
59
src/dev/code_coverage/ingest_coverage/__tests__/enumeration_helpers.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import expect from '@kbn/expect'; | ||
import { isExcluded, tryPath } from '../team_assignment/enumeration_helpers'; | ||
|
||
describe(`enumeration helper fns`, () => { | ||
describe(`isExcluded`, () => { | ||
it(`should exclude exclusions`, () => { | ||
expect( | ||
isExcluded('src/dev/code_coverage/nyc_config/nyc.jest.config.js', [ | ||
'src/dev/code_coverage/nyc_config', | ||
]) | ||
).to.be(true); | ||
}); | ||
}); | ||
describe(`tryPath`, () => { | ||
describe(`w/o glob file paths`, () => { | ||
it(`should return a right on an existing path`, () => { | ||
const aPath = 'src/dev/code_coverage/ingest_coverage/ingest.js'; | ||
const actual = tryPath(aPath); | ||
expect(actual.isRight()).to.be(true); | ||
}); | ||
it(`should return a left on a non existing path`, () => { | ||
const aPath = 'src/dev/code_coverage/ingest_coverage/does_not_exist.js'; | ||
const actual = tryPath(aPath); | ||
expect(actual.isLeft()).to.be(true); | ||
}); | ||
}); | ||
describe(`with glob file paths`, () => { | ||
it(`should not error when the glob expands to nothing, but instead return a Left`, () => { | ||
const aPath = 'src/legacy/core_plugins/kibana/public/home/*.ts'; | ||
const actual = tryPath(aPath); | ||
expect(actual.isLeft()).to.be(true); | ||
}); | ||
it(`should return a right on a glob that does indeed expand`, () => { | ||
const aPath = 'src/dev/code_coverage/ingest_coverage/*.js'; | ||
const actual = tryPath(aPath); | ||
expect(actual.isRight()).to.be(true); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
src/dev/code_coverage/ingest_coverage/__tests__/mocks/team_assign_mock.json
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.