Test: Move the test for Utility::normalizeEtag to testutility.cpp
authorOlivier Goffart <ogoffart@woboq.com>
Fri, 30 Nov 2018 14:08:30 +0000 (15:08 +0100)
committerKevin Ottens <kevin.ottens@nextcloud.com>
Tue, 15 Dec 2020 09:58:28 +0000 (10:58 +0100)
I just moved the text and did the minimum to port it to QtTest
Did not change hte layout of it.

Relates #6358

test/csync/CMakeLists.txt
test/csync/csync_tests/check_csync_misc.cpp [deleted file]
test/testutility.cpp

index 28d22437739a5804a0d134171232a2a5d51ab3ad..621c8a154ea3f8e8421817704632aa1c66a70949 100644 (file)
@@ -25,7 +25,6 @@ add_cmocka_test(check_std_c_str std_tests/check_std_c_str.c ${TEST_TARGET_LIBRAR
 
 # csync tests
 add_cmocka_test(check_csync_exclude csync_tests/check_csync_exclude.cpp ${TEST_TARGET_LIBRARIES})
-add_cmocka_test(check_csync_util csync_tests/check_csync_util.cpp ${TEST_TARGET_LIBRARIES})
 
 # vio
 add_cmocka_test(check_vio_ext vio_tests/check_vio_ext.cpp ${TEST_TARGET_LIBRARIES})
diff --git a/test/csync/csync_tests/check_csync_misc.cpp b/test/csync/csync_tests/check_csync_misc.cpp
deleted file mode 100644 (file)
index 6ff70e4..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * libcsync -- a library to sync a directory with another
- *
- * Copyright (c) 2008-2013 by Andreas Schneider <asn@cryptomilk.org>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-#include "common/utility.h"
-#include <cstdlib>
-#include "torture.h"
-
-static void check_csync_normalize_etag(void **state)
-{
-  QByteArray str;
-
-  (void) state; /* unused */
-
-#define CHECK_NORMALIZE_ETAG(TEST, EXPECT) \
-    str = OCC::Utility::normalizeEtag(TEST); \
-    assert_string_equal(str.constData(), EXPECT); \
-
-
-  CHECK_NORMALIZE_ETAG("foo", "foo");
-  CHECK_NORMALIZE_ETAG("\"foo\"", "foo");
-  CHECK_NORMALIZE_ETAG("\"nar123\"", "nar123");
-  CHECK_NORMALIZE_ETAG("", "");
-  CHECK_NORMALIZE_ETAG("\"\"", "");
-
-  /* Test with -gzip (all combinaison) */
-  CHECK_NORMALIZE_ETAG("foo-gzip", "foo");
-  CHECK_NORMALIZE_ETAG("\"foo\"-gzip", "foo");
-  CHECK_NORMALIZE_ETAG("\"foo-gzip\"", "foo");
-}
-
-int torture_run_tests(void)
-{
-    const struct CMUnitTest tests[] = {
-        cmocka_unit_test(check_csync_normalize_etag),
-    };
-
-    return cmocka_run_group_tests(tests, nullptr, nullptr);
-}
-
index 2e2b03addaf08e4e0a801dd05a9dece7df920940..38acb0ca20a794b1fab8db4ad13b0cd4f69465ba 100644 (file)
@@ -217,6 +217,26 @@ private slots:
         QFETCH(QString, output);
         QCOMPARE(sanitizeForFileName(input), output);
     }
+
+    void testNormalizeEtag()
+    {
+        QByteArray str;
+
+#define CHECK_NORMALIZE_ETAG(TEST, EXPECT) \
+    str = OCC::Utility::normalizeEtag(TEST); \
+    QCOMPARE(str.constData(), EXPECT); \
+
+        CHECK_NORMALIZE_ETAG("foo", "foo");
+        CHECK_NORMALIZE_ETAG("\"foo\"", "foo");
+        CHECK_NORMALIZE_ETAG("\"nar123\"", "nar123");
+        CHECK_NORMALIZE_ETAG("", "");
+        CHECK_NORMALIZE_ETAG("\"\"", "");
+
+        /* Test with -gzip (all combinaison) */
+        CHECK_NORMALIZE_ETAG("foo-gzip", "foo");
+        CHECK_NORMALIZE_ETAG("\"foo\"-gzip", "foo");
+        CHECK_NORMALIZE_ETAG("\"foo-gzip\"", "foo");
+    }
 };
 
 QTEST_GUILESS_MAIN(TestUtility)