2014-02-24 14:08:58 +04:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
2017-09-05 17:12:32 +03:00
|
|
|
#include "common/utility.h"
|
2013-11-26 14:55:47 +04:00
|
|
|
#include <stdlib.h>
|
2017-08-16 09:36:52 +03:00
|
|
|
#include "torture.h"
|
2013-11-26 14:55:47 +04:00
|
|
|
|
|
|
|
static void check_csync_normalize_etag(void **state)
|
|
|
|
{
|
2017-09-05 17:12:32 +03:00
|
|
|
QByteArray str;
|
2013-11-26 14:55:47 +04:00
|
|
|
|
|
|
|
(void) state; /* unused */
|
|
|
|
|
|
|
|
#define CHECK_NORMALIZE_ETAG(TEST, EXPECT) \
|
2017-09-05 17:12:32 +03:00
|
|
|
str = OCC::Utility::normalizeEtag(TEST); \
|
|
|
|
assert_string_equal(str.constData(), EXPECT); \
|
2013-11-26 14:55:47 +04:00
|
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2016-09-02 16:49:54 +03:00
|
|
|
const struct CMUnitTest tests[] = {
|
|
|
|
cmocka_unit_test(check_csync_normalize_etag),
|
2013-11-26 14:55:47 +04:00
|
|
|
};
|
|
|
|
|
2016-09-02 16:49:54 +03:00
|
|
|
return cmocka_run_group_tests(tests, NULL, NULL);
|
2013-11-26 14:55:47 +04:00
|
|
|
}
|
|
|
|
|