From 378c18e5f024ac5a8aef4cb40d7c9aa9633d144c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 16:30:35 +0200 Subject: Adding upstream version 2.38.1. Signed-off-by: Daniel Baumann --- tests/ts/uuid/namespace | 29 ++++++++++++++++++++++ tests/ts/uuid/oids | 33 +++++++++++++++++++++++++ tests/ts/uuid/uuid_parser | 26 ++++++++++++++++++++ tests/ts/uuid/uuidd | 59 +++++++++++++++++++++++++++++++++++++++++++++ tests/ts/uuid/uuidgen | 45 ++++++++++++++++++++++++++++++++++ tests/ts/uuid/uuidparse | 61 +++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 253 insertions(+) create mode 100755 tests/ts/uuid/namespace create mode 100755 tests/ts/uuid/oids create mode 100755 tests/ts/uuid/uuid_parser create mode 100755 tests/ts/uuid/uuidd create mode 100755 tests/ts/uuid/uuidgen create mode 100755 tests/ts/uuid/uuidparse (limited to 'tests/ts/uuid') diff --git a/tests/ts/uuid/namespace b/tests/ts/uuid/namespace new file mode 100755 index 0000000..bec2c9d --- /dev/null +++ b/tests/ts/uuid/namespace @@ -0,0 +1,29 @@ +#!/bin/bash + +# +# Copyright (C) 2009 Karel Zak +# +# This file is part of util-linux. +# +# This file 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 2 of the License, or +# (at your option) any later version. +# +# This file 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. +# +TS_TOPDIR="${0%/*}/../.." + +. $TS_TOPDIR/functions.sh +ts_init "$*" + +ts_check_test_command "$TS_HELPER_UUID_NAMESPACE" + +$TS_HELPER_UUID_NAMESPACE > $TS_OUTPUT + +ts_finalize + + diff --git a/tests/ts/uuid/oids b/tests/ts/uuid/oids new file mode 100755 index 0000000..77e010c --- /dev/null +++ b/tests/ts/uuid/oids @@ -0,0 +1,33 @@ +#!/bin/bash + +# This file is part of util-linux. +# +# This file 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 2 of the License, or +# (at your option) any later version. +# +# This file 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. + +TS_TOPDIR="${0%/*}/../.." +TS_DESC="oids" + +. $TS_TOPDIR/functions.sh +ts_init "$*" + +: . > $TS_OUTPUT + +ts_check_test_command "$TS_CMD_UUIDGEN" + +$TS_CMD_UUIDGEN --md5 --namespace @dns --name "www.widgets.com" >> $TS_OUTPUT + +$TS_CMD_UUIDGEN --md5 --namespace @dns --name "www.example.com" >> $TS_OUTPUT + +$TS_CMD_UUIDGEN --sha1 --namespace @dns --name "www.example.com" >> $TS_OUTPUT + +$TS_CMD_UUIDGEN --sha1 --namespace @oid --hex --name "525400fc0f5e" >> $TS_OUTPUT + +ts_finalize diff --git a/tests/ts/uuid/uuid_parser b/tests/ts/uuid/uuid_parser new file mode 100755 index 0000000..6c085b7 --- /dev/null +++ b/tests/ts/uuid/uuid_parser @@ -0,0 +1,26 @@ +#!/bin/bash + +# This file is part of util-linux. +# +# This file 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 2 of the License, or +# (at your option) any later version. +# +# This file 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. + +TS_TOPDIR="${0%/*}/../.." +TS_DESC="uuid_parser" + +. $TS_TOPDIR/functions.sh +ts_init "$*" + +ts_check_test_command "$TS_HELPER_UUID_PARSER" + +$TS_HELPER_UUID_PARSER >> $TS_OUTPUT 2>> $TS_ERRLOG +echo "return value: $?" >> $TS_OUTPUT + +ts_finalize diff --git a/tests/ts/uuid/uuidd b/tests/ts/uuid/uuidd new file mode 100755 index 0000000..a38996c --- /dev/null +++ b/tests/ts/uuid/uuidd @@ -0,0 +1,59 @@ +#!/bin/bash + +# This file is part of util-linux. +# +# This file 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 2 of the License, or +# (at your option) any later version. +# +# This file 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. + +TS_TOPDIR="${0%/*}/../.." +TS_DESC="uuidd" + +. $TS_TOPDIR/functions.sh +ts_init "$*" + +ts_check_test_command "$TS_HELPER_UUID_PARSER" +ts_check_test_command "$TS_CMD_UUIDD" + +OUTPUT_FILE="$(mktemp "${TS_OUTDIR}/uuiddXXXXXXXXXXXXX")" +UUIDD_PID="$(mktemp -u "${TS_OUTDIR}/uuiddXXXXXXXXXXXXX")" +# socket path must be short (SIZEOF_SOCKADDR_UN_SUN_PATH 108) +UUIDD_SOCKET=$(mktemp "/tmp/ultest-$TS_COMPONENT-$TS_TESTNAME-socketXXXXXX") + +$TS_CMD_UUIDD -p "$UUIDD_PID" -s "$UUIDD_SOCKET" +if [ $? -ne 0 ]; then + ts_failed "daemon start" +fi + +test_flag() { + echo "options: $*" >> $TS_OUTPUT + $TS_CMD_UUIDD -s $UUIDD_SOCKET $* | + sed '/List of UUIDs:/d; s/^[[:space:]]*//' > "$OUTPUT_FILE" 2>>$TS_OUTPUT + $TS_HELPER_UUID_PARSER "$OUTPUT_FILE" >> $TS_OUTPUT 2>> $TS_ERRLOG + ret=$? + if [ $ret -ne 0 ]; then + echo "something wrong with $OUTPUT_FILE" >> $TS_OUTPUT + cat $OUTPUT_FILE >> $TS_OUTPUT 2>> $TS_ERRLOG + fi + echo "return value: $ret" >> $TS_OUTPUT +} + +test_flag -t +test_flag --time +test_flag -r +test_flag --random +test_flag -r -n 65 + +$TS_CMD_UUIDD -k -s "$UUIDD_SOCKET" >> $TS_OUTPUT 2>> $TS_ERRLOG + +sed -i 's/pid [0-9]*.$/pid ./' $TS_OUTPUT $TS_ERRLOG + +rm -f "$OUTPUT_FILE" "$UUIDD_PID" "$UUIDD_SOCKET" + +ts_finalize diff --git a/tests/ts/uuid/uuidgen b/tests/ts/uuid/uuidgen new file mode 100755 index 0000000..f34b06c --- /dev/null +++ b/tests/ts/uuid/uuidgen @@ -0,0 +1,45 @@ +#!/bin/bash + +# This file is part of util-linux. +# +# This file 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 2 of the License, or +# (at your option) any later version. +# +# This file 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. + +TS_TOPDIR="${0%/*}/../.." +TS_DESC="uuidgen" + +. $TS_TOPDIR/functions.sh +ts_init "$*" + +ts_check_test_command "$TS_HELPER_UUID_PARSER" +ts_check_test_command "$TS_CMD_UUIDGEN" + +OUTPUT_FILE="$(mktemp "${TS_OUTDIR}/uuidgenXXXXXXXXXXXXX")" + +test_flag() { + echo "option: $1" >> $TS_OUTPUT + $TS_CMD_UUIDGEN $1 > "$OUTPUT_FILE" 2>>$TS_OUTPUT + ret=$? + $TS_HELPER_UUID_PARSER "$OUTPUT_FILE" >> $TS_OUTPUT 2>> $TS_ERRLOG + if [ $? -ne 0 ] || [ $ret -ne 0 ]; then + echo "something wrong with $OUTPUT_FILE" >> $TS_OUTPUT + cat $OUTPUT_FILE >> $TS_OUTPUT 2>> $TS_ERRLOG + fi + echo "return values: $ret and $?" >> $TS_OUTPUT +} + +test_flag -r +test_flag -t +test_flag --random +test_flag --time + +rm -f "$OUTPUT_FILE" + +ts_finalize diff --git a/tests/ts/uuid/uuidparse b/tests/ts/uuid/uuidparse new file mode 100755 index 0000000..1ec371e --- /dev/null +++ b/tests/ts/uuid/uuidparse @@ -0,0 +1,61 @@ +#!/bin/bash + +# This file is part of util-linux. +# +# This file 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 2 of the License, or +# (at your option) any later version. +# +# This file 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. + +TS_TOPDIR="${0%/*}/../.." +TS_DESC="uuidparse" +export TZ=GMT + +. $TS_TOPDIR/functions.sh +ts_init "$*" + +ts_check_test_command "$TS_CMD_UUIDPARSE" + +echo '00000000-0000-0000-0000-000000000000 + +00000000-0000-1000-0000-000000000000 +00000000-0000-2000-0000-000000000000 +00000000-0000-3000-0000-000000000000 +00000000-0000-4000-0000-000000000000 +00000000-0000-5000-0000-000000000000 +00000000-0000-6000-0000-000000000000 + +00000000-0000-0000-8000-000000000000 +00000000-0000-2000-8000-000000000000 +00000000-0000-3000-8000-000000000000 +00000000-0000-4000-8000-000000000000 +00000000-0000-5000-8000-000000000000 +00000000-0000-6000-8000-000000000000 + +00000000-0000-0000-d000-000000000000 +00000000-0000-1000-d000-000000000000 +00000000-0000-2000-d000-000000000000 +00000000-0000-3000-d000-000000000000 +00000000-0000-4000-d000-000000000000 +00000000-0000-5000-d000-000000000000 +00000000-0000-6000-d000-000000000000 + +00000000-0000-0000-f000-000000000000 +00000000-0000-1000-f000-000000000000 +00000000-0000-2000-f000-000000000000 +00000000-0000-3000-f000-000000000000 +00000000-0000-4000-f000-000000000000 +00000000-0000-5000-f000-000000000000 +00000000-0000-6000-f000-000000000000 + +9b274c46-544a-11e7-a972-00037f500001 + +invalid-input' | $TS_CMD_UUIDPARSE >> $TS_OUTPUT 2>> $TS_ERRLOG +echo "return value: $?" >> $TS_OUTPUT + +ts_finalize -- cgit v1.2.3