ReaWwise

REAPER extension
Log | Files | Refs | Submodules

Mock.cpp (1508B)


      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 <catch2/catch_all.hpp>
     17 #include <catch2/catch_test_macros.hpp>
     18 #include <catch2/trompeloeil.hpp>
     19 #include "Core/WaapiClient.h"
     20 
     21 namespace AK::WwiseTransfer::Test
     22 {
     23 	class MockWaapiClient : public AK::WwiseTransfer::WaapiClient
     24 	{
     25 	public:
     26 		MAKE_MOCK4(connect, bool(char*, unsigned int, AK::WwiseAuthoringAPI::disconnectHandler_t, int));
     27 	};
     28 
     29 	TEST_CASE("connect example")
     30 	{
     31 		using trompeloeil::_;  // wild card for matching any value
     32 
     33 		MockWaapiClient client;
     34 
     35 		REQUIRE_CALL(client, connect(_, 8080, nullptr, -1))
     36 			.RETURN(true);
     37 
     38 		ALLOW_CALL(client, connect(_, 8000, nullptr, -1))
     39 			.RETURN(false);
     40 
     41 		REQUIRE(client.connect("testurl", 8080, nullptr, -1));
     42 		REQUIRE_FALSE(client.connect("testurl", 8000, nullptr, -1));
     43 	}
     44 } // AK::WwiseTransfer::Test