ReaWwise

REAPER extension
Log | Files | Refs | Submodules

PersistanceHelperTest.cpp (3408B)


      1 /*----------------------------------------------------------------------------------------
      2 
      3 Copyright (c) 2023 AUDIOKINETIC Inc.
      4 
      5 This file is licensed to use under the license available at:
      6 https://github.com/audiokinetic/ReaWwise/blob/main/License.txt (the "License").
      7 You may not use this file except in compliance with the License.
      8 
      9 Unless required by applicable law or agreed to in writing, software distributed
     10 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
     11 CONDITIONS OF ANY KIND, either express or implied.  See the License for the
     12 specific language governing permissions and limitations under the License.
     13 
     14 ----------------------------------------------------------------------------------------*/
     15 
     16 #include "PersistanceHelperTest.h"
     17 
     18 
     19 namespace AK::WwiseTransfer::Test
     20 {
     21 	TEST_CASE("hierarchyMappingToPresetData")
     22 	{
     23 		auto childrenCount = 3;
     24 
     25 		auto rootValueTree = juce::ValueTree(IDs::hierarchyMapping);
     26 		auto mappingNodeValuesVector = std::vector<TestHierarchyMappingNodeValues>();
     27 
     28 		for (int index = 1; index <= childrenCount; index++)
     29 		{
     30 			auto mappingNodeValues = TestHierarchyMappingNodeValues(index);
     31 			mappingNodeValuesVector.emplace_back(mappingNodeValues);
     32 
     33 			auto childValueTree = mappingNodeValues.generateValueTree();
     34 			rootValueTree.appendChild(childValueTree, nullptr);
     35 		}
     36 
     37 		SECTION("Without Removed Properties")
     38 		{
     39 			auto presetData = PersistanceHelper::hierarchyMappingToPresetData(rootValueTree);
     40 			auto parsedData = juce::parseXML(presetData);
     41 
     42 			for (int index = 0; index < childrenCount; index++)
     43 			{
     44 				auto childPreset = parsedData.get()->getChildElement(index);
     45 				testHierarchyMappingPresetDataEquality(*childPreset, mappingNodeValuesVector[index]);
     46 			}
     47 		}
     48 
     49 		SECTION("With Removed Properties")
     50 		{
     51 			for (int index = 0; index < childrenCount; index++)
     52 			{
     53 				auto childTree = rootValueTree.getChild(index);
     54 				addPropertiesToRemove(childTree);
     55 			}
     56 
     57 			auto presetData = PersistanceHelper::hierarchyMappingToPresetData(rootValueTree);
     58 			auto parsedData = juce::parseXML(presetData);
     59 
     60 			for (int index = 0; index < childrenCount; index++)
     61 			{
     62 				auto childPreset = parsedData.get()->getChildElement(index);
     63 				testHierarchyMappingPresetDataEquality(*childPreset, mappingNodeValuesVector[index]);
     64 				testHierarchyMappingPresetRemovedProperties(*childPreset);
     65 			}
     66 		}
     67 	}
     68 
     69 	TEST_CASE("hierarchyMappingToPresetData: Empty Value Tree")
     70 	{
     71 		auto valueTree = juce::ValueTree();
     72 		auto presetData = PersistanceHelper::hierarchyMappingToPresetData(valueTree);
     73 
     74 		REQUIRE(presetData.isEmpty());
     75 	}
     76 
     77 	TEST_CASE("presetDataToHierarchyMapping")
     78 	{
     79 		auto rootValueTree = juce::ValueTree(IDs::hierarchyMapping);
     80 
     81 		auto childMappingValues = TestHierarchyMappingNodeValues();
     82 		auto childValueTree = childMappingValues.generateValueTree();
     83 
     84 		rootValueTree.addChild(childValueTree, 0, nullptr);
     85 		auto rootPresetData = rootValueTree.toXmlString();
     86 		auto valueTree = PersistanceHelper::presetDataToHierarchyMapping(rootPresetData);
     87 
     88 		for (int index = 0; index < valueTree.getNumChildren(); index++)
     89 		{
     90 			testHierarchyMappingValueTreeEquality(valueTree.getChild(index), childMappingValues);
     91 		}
     92 	}
     93 
     94 	TEST_CASE("presetDataToHierarchyMapping: Empty String")
     95 	{
     96 		auto hierarchyMapping = PersistanceHelper::presetDataToHierarchyMapping("");
     97 
     98 		REQUIRE_FALSE(hierarchyMapping.isValid());
     99 	}
    100 } // namespace AK::WwiseTransfer::Test