Use a shorter/simpler license convention, stops the header taking so much space. Follow the SPDX license specification: https://spdx.org/licenses - C/C++/objc/objc++ - Python - Shell Scripts - CMake, GNUmakefile While most of the source tree has been included - `./extern/` was left out. - `./intern/cycles` & `./intern/atomic` are also excluded because they use different header conventions. doc/license/SPDX-license-identifiers.txt has been added to list SPDX all used identifiers. See P2788 for the script that automated these edits. Reviewed By: brecht, mont29, sergey Ref D14069
159 lines
5.3 KiB
C++
159 lines
5.3 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2020 Blender Foundation. */
|
|
#include "testing/testing.h"
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
#include "BLI_listbase.h"
|
|
#include "BLI_string.h"
|
|
|
|
#include "BKE_idtype.h"
|
|
#include "BKE_lib_id.h"
|
|
#include "BKE_main.h"
|
|
|
|
#include "DNA_ID.h"
|
|
#include "DNA_mesh_types.h"
|
|
#include "DNA_object_types.h"
|
|
|
|
namespace blender::bke::tests {
|
|
|
|
struct LibIDMainSortTestContext {
|
|
Main *bmain;
|
|
};
|
|
|
|
static void test_lib_id_main_sort_init(LibIDMainSortTestContext *ctx)
|
|
{
|
|
BKE_idtype_init();
|
|
ctx->bmain = BKE_main_new();
|
|
}
|
|
|
|
static void test_lib_id_main_sort_free(LibIDMainSortTestContext *ctx)
|
|
{
|
|
BKE_main_free(ctx->bmain);
|
|
}
|
|
|
|
static void test_lib_id_main_sort_check_order(std::initializer_list<ID *> list)
|
|
{
|
|
ID *prev_id = nullptr;
|
|
for (ID *id : list) {
|
|
EXPECT_EQ(id->prev, prev_id);
|
|
if (prev_id != nullptr) {
|
|
EXPECT_EQ(prev_id->next, id);
|
|
}
|
|
prev_id = id;
|
|
}
|
|
EXPECT_EQ(prev_id->next, nullptr);
|
|
}
|
|
|
|
TEST(lib_id_main_sort, local_ids_1)
|
|
{
|
|
LibIDMainSortTestContext ctx = {nullptr};
|
|
test_lib_id_main_sort_init(&ctx);
|
|
EXPECT_TRUE(BLI_listbase_is_empty(&ctx.bmain->libraries));
|
|
|
|
ID *id_c = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_C"));
|
|
ID *id_a = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_A"));
|
|
ID *id_b = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_B"));
|
|
EXPECT_TRUE(ctx.bmain->objects.first == id_a);
|
|
EXPECT_TRUE(ctx.bmain->objects.last == id_c);
|
|
test_lib_id_main_sort_check_order({id_a, id_b, id_c});
|
|
|
|
test_lib_id_main_sort_free(&ctx);
|
|
}
|
|
|
|
TEST(lib_id_main_sort, linked_ids_1)
|
|
{
|
|
LibIDMainSortTestContext ctx = {nullptr};
|
|
test_lib_id_main_sort_init(&ctx);
|
|
EXPECT_TRUE(BLI_listbase_is_empty(&ctx.bmain->libraries));
|
|
|
|
Library *lib_a = static_cast<Library *>(BKE_id_new(ctx.bmain, ID_LI, "LI_A"));
|
|
Library *lib_b = static_cast<Library *>(BKE_id_new(ctx.bmain, ID_LI, "LI_B"));
|
|
ID *id_c = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_C"));
|
|
ID *id_a = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_A"));
|
|
ID *id_b = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_B"));
|
|
|
|
id_a->lib = lib_a;
|
|
id_sort_by_name(&ctx.bmain->objects, id_a, nullptr);
|
|
id_b->lib = lib_a;
|
|
id_sort_by_name(&ctx.bmain->objects, id_b, nullptr);
|
|
EXPECT_TRUE(ctx.bmain->objects.first == id_c);
|
|
EXPECT_TRUE(ctx.bmain->objects.last == id_b);
|
|
test_lib_id_main_sort_check_order({id_c, id_a, id_b});
|
|
|
|
id_a->lib = lib_b;
|
|
id_sort_by_name(&ctx.bmain->objects, id_a, nullptr);
|
|
EXPECT_TRUE(ctx.bmain->objects.first == id_c);
|
|
EXPECT_TRUE(ctx.bmain->objects.last == id_a);
|
|
test_lib_id_main_sort_check_order({id_c, id_b, id_a});
|
|
|
|
id_b->lib = lib_b;
|
|
id_sort_by_name(&ctx.bmain->objects, id_b, nullptr);
|
|
EXPECT_TRUE(ctx.bmain->objects.first == id_c);
|
|
EXPECT_TRUE(ctx.bmain->objects.last == id_b);
|
|
test_lib_id_main_sort_check_order({id_c, id_a, id_b});
|
|
|
|
test_lib_id_main_sort_free(&ctx);
|
|
}
|
|
|
|
TEST(lib_id_main_unique_name, local_ids_1)
|
|
{
|
|
LibIDMainSortTestContext ctx = {nullptr};
|
|
test_lib_id_main_sort_init(&ctx);
|
|
EXPECT_TRUE(BLI_listbase_is_empty(&ctx.bmain->libraries));
|
|
|
|
ID *id_c = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_C"));
|
|
ID *id_a = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_A"));
|
|
ID *id_b = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_B"));
|
|
test_lib_id_main_sort_check_order({id_a, id_b, id_c});
|
|
|
|
BLI_strncpy(id_c->name, id_a->name, sizeof(id_c->name));
|
|
BKE_id_new_name_validate(&ctx.bmain->objects, id_c, nullptr, false);
|
|
EXPECT_TRUE(strcmp(id_c->name + 2, "OB_A.001") == 0);
|
|
EXPECT_TRUE(strcmp(id_a->name + 2, "OB_A") == 0);
|
|
EXPECT_TRUE(ctx.bmain->objects.first == id_a);
|
|
EXPECT_TRUE(ctx.bmain->objects.last == id_b);
|
|
test_lib_id_main_sort_check_order({id_a, id_c, id_b});
|
|
|
|
test_lib_id_main_sort_free(&ctx);
|
|
}
|
|
|
|
TEST(lib_id_main_unique_name, linked_ids_1)
|
|
{
|
|
LibIDMainSortTestContext ctx = {nullptr};
|
|
test_lib_id_main_sort_init(&ctx);
|
|
EXPECT_TRUE(BLI_listbase_is_empty(&ctx.bmain->libraries));
|
|
|
|
Library *lib_a = static_cast<Library *>(BKE_id_new(ctx.bmain, ID_LI, "LI_A"));
|
|
Library *lib_b = static_cast<Library *>(BKE_id_new(ctx.bmain, ID_LI, "LI_B"));
|
|
ID *id_c = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_C"));
|
|
ID *id_a = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_A"));
|
|
ID *id_b = static_cast<ID *>(BKE_id_new(ctx.bmain, ID_OB, "OB_B"));
|
|
|
|
id_a->lib = lib_a;
|
|
id_sort_by_name(&ctx.bmain->objects, id_a, nullptr);
|
|
id_b->lib = lib_a;
|
|
id_sort_by_name(&ctx.bmain->objects, id_b, nullptr);
|
|
BLI_strncpy(id_b->name, id_a->name, sizeof(id_b->name));
|
|
BKE_id_new_name_validate(&ctx.bmain->objects, id_b, nullptr, true);
|
|
EXPECT_TRUE(strcmp(id_b->name + 2, "OB_A.001") == 0);
|
|
EXPECT_TRUE(strcmp(id_a->name + 2, "OB_A") == 0);
|
|
EXPECT_TRUE(ctx.bmain->objects.first == id_c);
|
|
EXPECT_TRUE(ctx.bmain->objects.last == id_b);
|
|
test_lib_id_main_sort_check_order({id_c, id_a, id_b});
|
|
|
|
id_b->lib = lib_b;
|
|
id_sort_by_name(&ctx.bmain->objects, id_b, nullptr);
|
|
BLI_strncpy(id_b->name, id_a->name, sizeof(id_b->name));
|
|
BKE_id_new_name_validate(&ctx.bmain->objects, id_b, nullptr, true);
|
|
EXPECT_TRUE(strcmp(id_b->name + 2, "OB_A") == 0);
|
|
EXPECT_TRUE(strcmp(id_a->name + 2, "OB_A") == 0);
|
|
EXPECT_TRUE(ctx.bmain->objects.first == id_c);
|
|
EXPECT_TRUE(ctx.bmain->objects.last == id_b);
|
|
test_lib_id_main_sort_check_order({id_c, id_a, id_b});
|
|
|
|
test_lib_id_main_sort_free(&ctx);
|
|
}
|
|
|
|
} // namespace blender::bke::tests
|