-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add pr code coverage to ci (#4643)
- Loading branch information
Showing
6 changed files
with
123 additions
and
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
platform: linux | ||
inputs: | ||
- name: src | ||
- name: pipeline-tasks | ||
outputs: [name: src] | ||
params: | ||
GH_EMAIL: ((pages-operations-github-user-info.email)) | ||
GH_USERNAME: ((pages-operations-github-user-info.username)) | ||
GH_BOT_GPG_KEY: ((pages-operations-github-user-gpg.private_key)) | ||
GH_BOT_SSH_KEY: ((pages-gpg-operations-github-sshkey.private_key)) | ||
GH_BOT_GPG_TRUST: ((pages-operations-github-user-gpg-trust)) | ||
GH_TOKEN: ((pages-operations-ci-github-token)) | ||
run: | ||
dir: src | ||
path: ci/tasks/code-coverage-diff.sh |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
source "$(dirname $PWD)/pipeline-tasks/scripts/github-setup.sh" | ||
|
||
apt-get install jq -y | ||
|
||
branch=$(jq '.[] | select(.name=="head_name") | .value' .git/resource/metadata.json | tr -d '"') | ||
base_sha=$(jq '.[] | select(.name=="base_sha") | .value' .git/resource/metadata.json | tr -d '"') | ||
|
||
# generate test coverage | ||
yarn install | ||
cov_cmd() { yarn test:rtl --coverageReporters json-summary --coverageDirectory tmp; } | ||
tot_cmd() { jq '.["total"]["lines"]["pct"]' tmp/coverage-summary.json; } | ||
cov_cmd | ||
newcc=$(tot_cmd) | ||
git checkout $base_sha | ||
cov_cmd | ||
oldcc=$(tot_cmd) | ||
git switch - | ||
|
||
diffcc=$(awk -v n1=$newcc -v n2=$oldcc -v OFMT="%.2f" 'BEGIN{print n1-n2}') | ||
emoji=$([ ${diffcc:0:1} == "-" ] && echo ":chart_with_downwards_trend:" || echo ":chart_with_upwards_trend:") | ||
|
||
body="## :robot: This is an automated code coverage report | ||
Total coverage (lines): **$newcc%** | ||
Coverage diff: **$diffcc%** $emoji | ||
" | ||
|
||
gh pr comment $branch -b "$body" || gh pr comment $branch --edit-last -b "$body" |
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,19 @@ | ||
import React from 'react'; | ||
import { render, screen } from '@testing-library/react'; | ||
import '@testing-library/jest-dom'; | ||
|
||
import FilterIndicator from './FilterIndicator'; | ||
|
||
describe('<FilterIndicator/>', () => { | ||
it('renders', () => { | ||
const count = 5; | ||
const criteria = "test" | ||
render( | ||
<FilterIndicator count={count} criteria={criteria}/>, | ||
); | ||
|
||
const paragraph = screen.getByRole('paragraph'); | ||
expect(paragraph) | ||
.toHaveTextContent(`Showing ${count} matching results for ${criteria}.`); | ||
}); | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# yarn lockfile v1 | ||
|
||
|
||
"@adobe/css-tools@^4.0.1": | ||
"@adobe/css-tools@^4.4.0": | ||
version "4.4.0" | ||
resolved "https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.4.0.tgz#728c484f4e10df03d5a3acd0d8adcbbebff8ad63" | ||
integrity sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ== | ||
|
@@ -3157,45 +3157,41 @@ | |
"@svgr/plugin-jsx" "8.1.0" | ||
"@svgr/plugin-svgo" "8.1.0" | ||
|
||
"@testing-library/dom@^9.0.0", "@testing-library/dom@^9.3.1": | ||
version "9.3.4" | ||
resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-9.3.4.tgz#50696ec28376926fec0a1bf87d9dbac5e27f60ce" | ||
integrity sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ== | ||
"@testing-library/dom@^10.1.0": | ||
version "10.4.0" | ||
resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-10.4.0.tgz#82a9d9462f11d240ecadbf406607c6ceeeff43a8" | ||
integrity sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ== | ||
dependencies: | ||
"@babel/code-frame" "^7.10.4" | ||
"@babel/runtime" "^7.12.5" | ||
"@types/aria-query" "^5.0.1" | ||
aria-query "5.1.3" | ||
aria-query "5.3.0" | ||
chalk "^4.1.0" | ||
dom-accessibility-api "^0.5.9" | ||
lz-string "^1.5.0" | ||
pretty-format "^27.0.2" | ||
|
||
"@testing-library/jest-dom@^5.17.0": | ||
version "5.17.0" | ||
resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.17.0.tgz#5e97c8f9a15ccf4656da00fecab505728de81e0c" | ||
integrity sha512-ynmNeT7asXyH3aSVv4vvX4Rb+0qjOhdNHnO/3vuZNqPmhDpV/+rCSGwQ7bLcmU2cJ4dvoheIO85LQj0IbJHEtg== | ||
"@testing-library/jest-dom@^6.4.6": | ||
version "6.6.3" | ||
resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-6.6.3.tgz#26ba906cf928c0f8172e182c6fe214eb4f9f2bd2" | ||
integrity sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA== | ||
dependencies: | ||
"@adobe/css-tools" "^4.0.1" | ||
"@babel/runtime" "^7.9.2" | ||
"@types/testing-library__jest-dom" "^5.9.1" | ||
"@adobe/css-tools" "^4.4.0" | ||
aria-query "^5.0.0" | ||
chalk "^3.0.0" | ||
css.escape "^1.5.1" | ||
dom-accessibility-api "^0.5.6" | ||
lodash "^4.17.15" | ||
dom-accessibility-api "^0.6.3" | ||
lodash "^4.17.21" | ||
redent "^3.0.0" | ||
|
||
"@testing-library/react@^14.0.0": | ||
version "14.3.1" | ||
resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-14.3.1.tgz#29513fc3770d6fb75245c4e1245c470e4ffdd830" | ||
integrity sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ== | ||
"@testing-library/react@^16.0.1": | ||
version "16.0.1" | ||
resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-16.0.1.tgz#29c0ee878d672703f5e7579f239005e4e0faa875" | ||
integrity sha512-dSmwJVtJXmku+iocRhWOUFbrERC76TX2Mnf0ATODz8brzAZrMBbzLwQixlBSanZxR6LddK3eiwpSFZgDET1URg== | ||
dependencies: | ||
"@babel/runtime" "^7.12.5" | ||
"@testing-library/dom" "^9.0.0" | ||
"@types/react-dom" "^18.0.0" | ||
|
||
"@testing-library/user-event@^14.4.3": | ||
"@testing-library/user-event@^14.5.2": | ||
version "14.5.2" | ||
resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-14.5.2.tgz#db7257d727c891905947bd1c1a99da20e03c2ebd" | ||
integrity sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ== | ||
|
@@ -3322,14 +3318,6 @@ | |
dependencies: | ||
"@types/istanbul-lib-report" "*" | ||
|
||
"@types/jest@*": | ||
version "29.5.14" | ||
resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.14.tgz#2b910912fa1d6856cadcd0c1f95af7df1d6049e5" | ||
integrity sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ== | ||
dependencies: | ||
expect "^29.0.0" | ||
pretty-format "^29.0.0" | ||
|
||
"@types/jsdom@^20.0.0": | ||
version "20.0.1" | ||
resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-20.0.1.tgz#07c14bc19bd2f918c1929541cdaacae894744808" | ||
|
@@ -3373,13 +3361,6 @@ | |
resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.13.tgz#2af91918ee12d9d32914feb13f5326658461b451" | ||
integrity sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA== | ||
|
||
"@types/react-dom@^18.0.0": | ||
version "18.3.1" | ||
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.3.1.tgz#1e4654c08a9cdcfb6594c780ac59b55aad42fe07" | ||
integrity sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ== | ||
dependencies: | ||
"@types/react" "*" | ||
|
||
"@types/react-redux@^7.1.20": | ||
version "7.1.34" | ||
resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.34.tgz#83613e1957c481521e6776beeac4fd506d11bd0e" | ||
|
@@ -3420,13 +3401,6 @@ | |
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" | ||
integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== | ||
|
||
"@types/testing-library__jest-dom@^5.9.1": | ||
version "5.14.9" | ||
resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.9.tgz#0fb1e6a0278d87b6737db55af5967570b67cb466" | ||
integrity sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw== | ||
dependencies: | ||
"@types/jest" "*" | ||
|
||
"@types/tough-cookie@*": | ||
version "4.0.5" | ||
resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.5.tgz#cb6e2a691b70cb177c6e3ae9c1d2e8b2ea8cd304" | ||
|
@@ -4000,18 +3974,25 @@ argparse@^2.0.1: | |
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" | ||
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== | ||
|
||
aria-query@5.1.3, aria-query@~5.1.3: | ||
version "5.1.3" | ||
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" | ||
integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== | ||
aria-query@5.3.0: | ||
version "5.3.0" | ||
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e" | ||
integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A== | ||
dependencies: | ||
deep-equal "^2.0.5" | ||
dequal "^2.0.3" | ||
|
||
aria-query@^5.0.0, aria-query@^5.3.2: | ||
version "5.3.2" | ||
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.2.tgz#93f81a43480e33a338f19163a3d10a50c01dcd59" | ||
integrity sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw== | ||
|
||
aria-query@~5.1.3: | ||
version "5.1.3" | ||
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" | ||
integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== | ||
dependencies: | ||
deep-equal "^2.0.5" | ||
|
||
array-buffer-byte-length@^1.0.0, array-buffer-byte-length@^1.0.1: | ||
version "1.0.1" | ||
resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" | ||
|
@@ -5493,6 +5474,11 @@ deprecation@^2.0.0, deprecation@^2.3.1: | |
resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" | ||
integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== | ||
|
||
dequal@^2.0.3: | ||
version "2.0.3" | ||
resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" | ||
integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== | ||
|
||
[email protected]: | ||
version "1.2.0" | ||
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" | ||
|
@@ -5550,11 +5536,16 @@ doctrine@^2.1.0: | |
dependencies: | ||
esutils "^2.0.2" | ||
|
||
dom-accessibility-api@^0.5.6, dom-accessibility-api@^0.5.9: | ||
dom-accessibility-api@^0.5.9: | ||
version "0.5.16" | ||
resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453" | ||
integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== | ||
|
||
dom-accessibility-api@^0.6.3: | ||
version "0.6.3" | ||
resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz#993e925cc1d73f2c662e7d75dd5a5445259a8fd8" | ||
integrity sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w== | ||
|
||
dom-serializer@^2.0.0: | ||
version "2.0.0" | ||
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" | ||
|
@@ -6429,7 +6420,7 @@ exit@^0.1.2: | |
resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" | ||
integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== | ||
|
||
expect@^29.0.0, expect@^29.7.0: | ||
expect@^29.7.0: | ||
version "29.7.0" | ||
resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" | ||
integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== | ||
|
@@ -9848,7 +9839,7 @@ pretty-format@^27.0.2: | |
ansi-styles "^5.0.0" | ||
react-is "^17.0.1" | ||
|
||
pretty-format@^29.0.0, pretty-format@^29.7.0: | ||
pretty-format@^29.7.0: | ||
version "29.7.0" | ||
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" | ||
integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== | ||
|