Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented test for irc feature #279

Merged
merged 11 commits into from
Apr 26, 2024
29 changes: 29 additions & 0 deletions metrics/irc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/usr/bin/env bash
# The MIT License (MIT)
#
# Copyright (c) 2021-2024 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
set -e
set -o pipefail

output=$(realpath "$2")

# TODO: #279 REPLACE WITH ACTUAL METRIC CODE
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@zaqbez39me better remove this TODO, since it will trigger the creation of a new issue in the backlog -- we don't want TWO issues to originate from this pull requests. just one is enough.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@yegor256 removed it

echo "IRC 0.000 " >"${output}"
100 changes: 100 additions & 0 deletions tests/metrics/test-irc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
#!/usr/bin/env bash
# shellcheck disable=SC2317
# The MIT License (MIT)
#
# Copyright (c) 2021-2024 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
set -e
set -o pipefail

# TODO: #279 ENABLE THIS TESTS VIA REMOVING `exit 0` AND REMOVE `shellcheck disable=SC2317` on the top RIGHT AFTER IMPLEMENTING irc.sh
exit 0

temp=$1
stdout=$2

{
tmp=$(mktemp -d /tmp/XXXX)
cd "${tmp}"
mkdir -p "${LOCAL}/${temp}"
touch "${LOCAL}/${temp}/file.java"
if ! "${LOCAL}/metrics/irc.sh" "${LOCAL}/${temp}/file.java" "${LOCAL}/${temp}/stdout"
then
exit 1
fi
} > "${stdout}" 2>&1
echo "👍🏻 Failed in non-git directory"

{
tmp=$(mktemp -d /tmp/XXXX)
cd "${tmp}"
rm -rf ./*
rm -rf .git
git init --quiet .
git config user.email 'foo@example.com'
git config user.name 'Foo'
file1="one.java"
if ! "${LOCAL}/metrics/irc.sh" "./${file1}" "t0"
then
exit 1
fi
} > "${stdout}" 2>&1
echo "👍🏻 Failed in repo without given file"

{
tmp=$(mktemp -d /tmp/XXXX)
cd "${tmp}"
rm -rf ./*
rm -rf .git
git init --quiet .
git config user.email 'foo@example.com'
git config user.name 'Foo'
file1="one.java"
touch "${file1}"
"${LOCAL}/metrics/irc.sh" "./${file1}" "t0"
grep "IRC 0" "t0" # There are no commits in repo with given file
} > "${stdout}" 2>&1
echo "👍🏻 Didn't fail in repo without commits"

{
tmp=$(mktemp -d /tmp/XXXX)
cd "${tmp}"
rm -rf ./*
rm -rf .git
git init --quiet .
git config user.email 'foo@example.com'
git config user.name 'Foo'

file1="one.java"
touch "${file1}"
git add "${file1}"
git config commit.gpgsign false
git commit --quiet -m "first file"
"${LOCAL}/metrics/irc.sh" "./${file1}" "t2"
grep "irc 1 " "t2" # There is only commit in repo and it is for the given file

file2="two.java"
touch "${file2}"
git add "${file2}"
git commit --quiet -m "second file"
"${LOCAL}/metrics/irc.sh" "./${file2}" "t3"
grep "irc 0.5 " "t3" # There are two commits in repo and one for the given file
} > "${stdout}" 2>&1
echo "👍🏻 Correctly calculated the IRC (Impact Ratio by Commits)"