mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2025-12-16 12:08:49 +00:00
Some checks are pending
citra-build / source (push) Waiting to run
citra-build / linux (appimage) (push) Waiting to run
citra-build / linux (fresh) (push) Waiting to run
citra-build / macos (arm64) (push) Waiting to run
citra-build / macos (x86_64) (push) Waiting to run
citra-build / macos-universal (push) Blocked by required conditions
citra-build / windows (msvc) (push) Waiting to run
citra-build / windows (msys2) (push) Waiting to run
citra-build / android (push) Waiting to run
citra-build / ios (push) Waiting to run
citra-build / release (push) Blocked by required conditions
citra-format / clang-format (push) Waiting to run
citra-transifex / transifex (push) Waiting to run
27 lines
901 B
C++
27 lines
901 B
C++
// Copyright 2023 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <array>
|
|
#include <string>
|
|
|
|
#include <catch2/catch_test_macros.hpp>
|
|
|
|
#include "common/file_util.h"
|
|
#include "common/string_util.h"
|
|
|
|
TEST_CASE("SplitFilename83 Sanity", "[common]") {
|
|
std::string filename = "long_ass_file_name.cci";
|
|
std::array<char, 9> short_name;
|
|
std::array<char, 4> extension;
|
|
|
|
FileUtil::SplitFilename83(filename, short_name, extension);
|
|
|
|
filename = Common::ToUpper(filename);
|
|
std::string expected_short_name = filename.substr(0, 6).append("~1");
|
|
std::string expected_extension = filename.substr(filename.find('.') + 1, 3);
|
|
|
|
REQUIRE(std::memcmp(short_name.data(), expected_short_name.data(), short_name.size()) == 0);
|
|
REQUIRE(std::memcmp(extension.data(), expected_extension.data(), extension.size()) == 0);
|
|
}
|