summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2018-12-28 21:42:05 (EST)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2018-12-28 21:42:05 (EST)
commitf363a60b2855378a9e40529b57306deb41e8ed39 (patch)
tree0429afda5557086993349ae370030bbe80a27908
parent3c8daedc397625618266650a0275318670b4933d (diff)
tests/ob_parse_changelog.sh: New test file
-rw-r--r--tests/local.mk3
-rwxr-xr-xtests/ob_parse_changelog.sh132
2 files changed, 134 insertions, 1 deletions
diff --git a/tests/local.mk b/tests/local.mk
index 20a65d5..0dfa4a0 100644
--- a/tests/local.mk
+++ b/tests/local.mk
@@ -3,7 +3,8 @@ TESTS = \
%reldir%/ob_parse_dep.sh \
%reldir%/ob_reduce_deps.sh \
%reldir%/ob_arch_is_concerned.sh \
- %reldir%/ob_plat_is_concerned.sh
+ %reldir%/ob_plat_is_concerned.sh \
+ %reldir%/ob_parse_changelog.sh
TEST_EXTENSIONS = .sh
SH_LOG_DRIVER = \
AM_TAP_AWK='$(AWK)' \
diff --git a/tests/ob_parse_changelog.sh b/tests/ob_parse_changelog.sh
new file mode 100755
index 0000000..7d820b4
--- /dev/null
+++ b/tests/ob_parse_changelog.sh
@@ -0,0 +1,132 @@
+# Tests for ob_parse_changelog()
+#
+# Copyright (C) 2018 Patrick McDermott
+#
+# This file is part of opkbuild.
+#
+# opkbuild is free software: you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# opkbuild is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with opkbuild. If not, see <http://www.gnu.org/licenses/>.
+
+. "${TOP_SRCDIR}/tests/aux/tap-functions.sh"
+. "${TOP_BUILDDIR}/lib/libopkbuild.${SHSOEXT}.${LIBOPKBUILD_SHSOVERSION}"
+
+CHANGELOG='\
+bar (4) dev
+
+ * Non-maintainer upload. Rename package and upload elsewhere.
+
+ -- "K. Random Hacker" <krandom@example.com> Sun, 04 Jan 1970 00:00:00 +0000
+
+foo (3) trunk
+
+
+ * Frobnicate foos.
+ * Break all the things.
+
+
+ -- "J. Random Hacker" <jrandom@example.com> Sat, 03 Jan 1970 00:00:00 +0000
+
+
+foo (2) trunk
+ * Reticulated splines.
+ -- "J. Random Hacker" <jrandom@example.com> Fri, 02 Jan 1970 00:00:00 +0000
+foo (1) trunk
+ * Initial release.
+ -- "J. Random Hacker" <jrandom@example.com> Thu, 01 Jan 1970 00:00:00 +0000
+'
+
+plan_ 18
+
+entry=0
+
+is()
+{
+ local description="${1}"
+ local got="${2}"
+ local expected="${3}"
+ shift 3
+
+ if [ "x${got}" = "x${expected}" ]; then
+ ok_ -- "${description}"
+ else
+ not_ok_ -- "${description}"
+ diag_ " Failed test '${description}'"
+ diag_ " got: '${got}'"
+ diag_ " expected: '${expected}'"
+ fi
+}
+
+entry_1()
+{
+ is 'source' "${OB_CHANGELOG_SOURCE}" 'bar'
+ is 'version' "${OB_CHANGELOG_VERSION}" '4'
+ is 'distribution' "${OB_CHANGELOG_DISTRIBUTION}" 'dev'
+ is 'changes' "${OB_CHANGELOG_CHANGES}" "$(cat <<-EOF
+ bar (4) dev
+
+ * Non-maintainer upload. Rename package and upload elsewhere.
+ EOF
+ )"
+ is 'maintainer' "${OB_CHANGELOG_MAINTAINER}" \
+ '"K. Random Hacker" <krandom@example.com>'
+ is 'date' "${OB_CHANGELOG_DATE}" 'Sun, 04 Jan 1970 00:00:00 +0000'
+
+ return 0
+}
+
+entry_2()
+{
+ is 'source' "${OB_CHANGELOG_SOURCE}" 'foo'
+ is 'version' "${OB_CHANGELOG_VERSION}" '3'
+ is 'distribution' "${OB_CHANGELOG_DISTRIBUTION}" 'trunk'
+ is 'changes' "${OB_CHANGELOG_CHANGES}" "$(cat <<-EOF
+ foo (3) trunk
+
+
+ * Frobnicate foos.
+ * Break all the things.
+ EOF
+ )"
+ is 'maintainer' "${OB_CHANGELOG_MAINTAINER}" \
+ '"J. Random Hacker" <jrandom@example.com>'
+ is 'date' "${OB_CHANGELOG_DATE}" 'Sat, 03 Jan 1970 00:00:00 +0000'
+
+ return 0
+}
+
+entry_3()
+{
+ is 'source' "${OB_CHANGELOG_SOURCE}" 'foo'
+ is 'version' "${OB_CHANGELOG_VERSION}" '2'
+ is 'distribution' "${OB_CHANGELOG_DISTRIBUTION}" 'trunk'
+ is 'changes' "${OB_CHANGELOG_CHANGES}" "$(cat <<-EOF
+ foo (2) trunk
+ * Reticulated splines.
+ EOF
+ )"
+ is 'maintainer' "${OB_CHANGELOG_MAINTAINER}" \
+ '"J. Random Hacker" <jrandom@example.com>'
+ is 'date' "${OB_CHANGELOG_DATE}" 'Fri, 02 Jan 1970 00:00:00 +0000'
+
+ return 1
+}
+
+entry_cb()
+{
+ entry=$((${entry} + 1))
+ "entry_${entry}"
+}
+
+ob_parse_changelog - entry_cb <<-EOF
+ ${CHANGELOG}
+ EOF