-
Notifications
You must be signed in to change notification settings - Fork 42
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 irloc feature #281
Changes from 8 commits
bf10499
59649d6
64d81e3
f0077df
4a5ec10
9ce501d
48aa467
3620dd6
f724151
d9ca9a9
370c070
4df9c51
6180a93
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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: REPLACE WITH ACTUAL METRIC CODE | ||
echo "IRLoC 0.000 " >"${output}" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
#!/usr/bin/env bash | ||
# shellcheck disable=SC2317 | ||
# TODO: REMOVE SHELLCHECK DISABLE RIGHT AFTER IMPLEMENTING irloc.sh | ||
# 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: ENABLE THIS TESTS RIGHT AFTER IMPLEMENTING irloc.sh VIA REMOVING `exit 0` | ||
exit 0 | ||
|
||
temp=$1 | ||
stdout=$2 | ||
|
||
{ | ||
tmp=$(mktemp -d /tmp/XXXX) | ||
cd "${tmp}" | ||
mkdir -p "${LOCAL}/${temp}" | ||
touch "${LOCAL}/${temp}/file.java" | ||
"${LOCAL}/metrics/irloc.sh" "${LOCAL}/${temp}/file.java" "${LOCAL}/${temp}/stdout" | ||
grep "Provided non-git repo" "${LOCAL}/${temp}/stdout" | ||
} >"${stdout}" 2>&1 | ||
echo "👍🏻 Didn't fail 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" | ||
"${LOCAL}/metrics/irloc.sh" "./${file1}" "t0" | ||
grep "File does not exist" "t0" # The given file does not exist | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @zaqbez39me same here - the script should fail |
||
} >"${stdout}" 2>&1 | ||
echo "👍🏻 Didn't fail 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/irloc.sh" "./${file1}" "t0" | ||
grep "No commits yet in repo" "t0" # There are no commits in repo with given file | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @zaqbez39me this looks like a wrong output. Instead, it should say |
||
} >"${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 commit --quiet -m "first file" | ||
"${LOCAL}/metrics/irloc.sh" "./${file1}" "t0" | ||
grep "Zero lines of code in repo" "t0" # There are only empty files committed in the repo | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @zaqbez39me The output should be |
||
} >"${stdout}" 2>&1 | ||
echo "👍🏻 Didn't fail in repo with zero lines of code" | ||
|
||
{ | ||
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" | ||
echo "line" >"${file1}" | ||
git add "${file1}" | ||
git config commit.gpgsign false | ||
git commit --quiet -m "first line" | ||
"${LOCAL}/metrics/irloc.sh" "./${file1}" "t1" | ||
grep "irloc 1 " "t1" # There is only line in repo and it is inside the given file | ||
|
||
file2="two.java" | ||
echo "line" >"${file2}" | ||
git add "${file2}" | ||
git commit --quiet -m "second line" | ||
"${LOCAL}/metrics/irloc.sh" "./${file2}" "t2" | ||
grep "irloc 0.5 " "t2" # There are two lines in repo and one for the given file | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @zaqbez39me I think it should be |
||
|
||
printf "line\nline" >>"file.txt" | ||
git add "${file2}" | ||
git commit --quiet -m "two more lines" | ||
"${LOCAL}/metrics/irloc.sh" "./${file2}" "t3" | ||
grep "irloc 0.75 " "t3" # There are four lines in repo and three for the given file | ||
} >"${stdout}" 2>&1 | ||
echo "👍🏻 Correctly calculated the IRLoC (Impact Ratio by Lines of Code)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zaqbez39me I think the script should fail here, instead of printing a message to the console