2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#include "td/utils/filesystem.h"
|
2019-12-08 06:18:49 +01:00
|
|
|
#include "td/utils/Slice.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/tests.h"
|
|
|
|
|
2019-12-08 06:18:49 +01:00
|
|
|
static void test_clean_filename(td::CSlice name, td::Slice result) {
|
|
|
|
ASSERT_STREQ(td::clean_filename(name), result);
|
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
TEST(Misc, clean_filename) {
|
2019-12-08 06:18:49 +01:00
|
|
|
test_clean_filename("-1234567", "-1234567");
|
|
|
|
test_clean_filename(".git", "git");
|
|
|
|
test_clean_filename("../../.git", "git");
|
|
|
|
test_clean_filename(".././..", "");
|
|
|
|
test_clean_filename("../", "");
|
|
|
|
test_clean_filename("..", "");
|
|
|
|
test_clean_filename("test/git/ as dsa . a", "as dsa.a");
|
|
|
|
test_clean_filename(" . ", "");
|
|
|
|
test_clean_filename("!@#$%^&*()_+-=[]{;|:\"}'<>?,.`~", "!@#$%^ ()_+-=[]{; } ,.~");
|
|
|
|
test_clean_filename("!@#$%^&*()_+-=[]{}\\|:\";'<>?,.`~", "; ,.~");
|
|
|
|
test_clean_filename("عرفها بعد قد. هذا مع تاريخ اليميني واندونيسيا،, لعدم تاريخ لهيمنة الى",
|
|
|
|
"عرفها بعد قد.هذا مع تاريخ اليميني");
|
|
|
|
test_clean_filename(
|
|
|
|
"012345678901234567890123456789012345678901234567890123456789adsasdasdsaa.01234567890123456789asdasdasdasd",
|
2018-12-31 20:04:05 +01:00
|
|
|
"012345678901234567890123456789012345678901234567890123456789.01234567890123456789");
|
2019-12-08 06:18:49 +01:00
|
|
|
test_clean_filename(
|
|
|
|
"01234567890123456789012345678901234567890123456789<>*?: <>*?:0123456789adsasdasdsaa. "
|
|
|
|
"0123456789`<><<>><><>0123456789asdasdasdasd",
|
|
|
|
"01234567890123456789012345678901234567890123456789.0123456789");
|
|
|
|
test_clean_filename(
|
|
|
|
"01234567890123456789012345678901234567890123456789<>*?: <>*?:0123456789adsasdasdsaa. "
|
|
|
|
"0123456789`<><><>0123456789asdasdasdasd",
|
|
|
|
"01234567890123456789012345678901234567890123456789.0123456789 012");
|
|
|
|
test_clean_filename("C:/document.tar.gz", "document.tar.gz");
|
|
|
|
test_clean_filename("test....", "test");
|
|
|
|
test_clean_filename("....test", "test");
|
|
|
|
test_clean_filename("test.exe....", "test.exe"); // extension has changed
|
|
|
|
test_clean_filename("test.exe01234567890123456789....",
|
|
|
|
"test.exe01234567890123456789"); // extension may be more than 20 characters
|
|
|
|
test_clean_filename("....test....asdf", "test.asdf");
|
|
|
|
test_clean_filename("കറുപ്പ്.txt", "കറപപ.txt");
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|