From 19ee727c6ef1286f128b826f3db271bcfa913ebe Mon Sep 17 00:00:00 2001 From: Ziggy Date: Sat, 27 Jan 2024 11:07:55 +0100 Subject: [PATCH] Added regression test for CRC not setting string field when being read from mongo --- .../com/projectswg/common/data/CRCTest.kt | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/test/java/com/projectswg/common/data/CRCTest.kt diff --git a/src/test/java/com/projectswg/common/data/CRCTest.kt b/src/test/java/com/projectswg/common/data/CRCTest.kt new file mode 100644 index 0000000..ac92ea4 --- /dev/null +++ b/src/test/java/com/projectswg/common/data/CRCTest.kt @@ -0,0 +1,45 @@ +/*********************************************************************************** + * Copyright (c) 2024 /// Project SWG /// www.projectswg.com * + * * + * ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on * + * July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. * + * Our goal is to create an emulator which will provide a server for players to * + * continue playing a game similar to the one they used to play. We are basing * + * it on the final publish of the game prior to end-game events. * + * * + * This file is part of PSWGCommon. * + * * + * --------------------------------------------------------------------------------* + * * + * PSWGCommon is free software: you can redistribute it and/or modify * + * it under the terms of the GNU Affero General Public License as * + * published by the Free Software Foundation, either version 3 of the * + * License, or (at your option) any later version. * + * * + * PSWGCommon 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 Affero General Public License for more details. * + * * + * You should have received a copy of the GNU Affero General Public License * + * along with PSWGCommon. If not, see . * + ***********************************************************************************/ +package com.projectswg.common.data + +import com.projectswg.common.data.encodables.mongo.MongoData +import org.junit.jupiter.api.Assertions.assertEquals +import org.junit.jupiter.api.Test + +class CRCTest { + @Test + fun stringIsReadFromMongo() { + val originalCrc = CRC(-1478931591) + val data = MongoData() + originalCrc.saveMongo(data) + val restoredCrc = CRC() + + restoredCrc.readMongo(data) + + assertEquals("quest/tatooine_bestinejobs_bantha", restoredCrc.string) + } +} \ No newline at end of file