1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
/*++
Copyright (C) 2018 3MF Consortium
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Abstract:
UnitTest_ProgressCallback.cpp: Defines Unittests for the progress callback functionality
--*/
#include "UnitTest_Utilities.h"
#include "Model/COM/NMR_DLLInterfaces.h"
#include <vector>
#include <string>
#include <cmath>
#include <iostream>
#include "gtest/gtest.h"
#include "Common/NMR_ErrorConst.h"
namespace NMR {
int nUserData = 42;
bool Callback_Positive(int step, NMR::ProgressIdentifier identifier, void* userData) {
//std::cout << "Step " << step;
if (identifier != NMR::ProgressIdentifier::PROGRESS_QUERYCANCELED) {
const char * progressMessage;
EXPECT_EQ(NMR::lib3mf_retrieveprogressmessage(identifier, &progressMessage), S_OK) << L"Could not get progress message";
//std::cout << ": info = \"" << progressMessage << "\"";
}
//std::cout << "\n";
EXPECT_TRUE(nUserData == *(reinterpret_cast<int*>(userData))) << L"Userdata does not match.";
return true;
}
bool Callback_Negative(int step, NMR::ProgressIdentifier identifier, void* userData) {
Callback_Positive(step, identifier, userData);
if (step > 50)
return false;
return true;
}
bool LoadFileWithProgress(const char* fileName) {
using namespace NMR;
HRESULT hResult;
std::string sFullName = sTestFilesPath + separator() + "Production" + separator() + fileName;
{
CustomLib3MFBase pModel;
EXPECT_EQ(lib3mf_createmodel(&pModel.get()), S_OK) << L"Could not create 3MF model";
CustomLib3MFBase p3MFReader;
EXPECT_EQ(lib3mf_model_queryreader(pModel.get(), "3mf", &p3MFReader.get()), S_OK) << L"Could create Model Reader";
{
EXPECT_EQ(lib3mf_reader_setprogresscallback(p3MFReader.get(), Callback_Negative, &nUserData), S_OK) << L"Could not set progress callback";
hResult = lib3mf_reader_readfromfileutf8(p3MFReader.get(), sFullName.c_str());
EXPECT_NE(hResult, S_OK) << L"Expected Failure!";
DWORD nErrorCode;
LPCSTR sErrorMessage;
lib3mf_getlasterror(p3MFReader.get(), &nErrorCode, &sErrorMessage);
EXPECT_EQ(nErrorCode, NMR_USERABORTED) << L"Expected User Abort!";
}
}
CustomLib3MFBase pModel;
EXPECT_EQ(lib3mf_createmodel(&pModel.get()), S_OK) << L"Could not create 3MF model";
CustomLib3MFBase p3MFReader;
EXPECT_EQ(lib3mf_model_queryreader(pModel.get(), "3mf", &p3MFReader.get()), S_OK) << L"Could create Model Reader";
EXPECT_EQ(lib3mf_reader_setprogresscallback(p3MFReader.get(), Callback_Positive, &nUserData), S_OK) << L"Could not set progress callback";
hResult = lib3mf_reader_readfromfileutf8(p3MFReader.get(), sFullName.c_str());
DWORD nWarningCount;
lib3mf_reader_getwarningcount(p3MFReader.get(), &nWarningCount);
EXPECT_EQ(nWarningCount, 0) << L"Warnings in the 3MF file : " << nWarningCount;
for (DWORD iWarning = 0; iWarning < nWarningCount; iWarning++) {
DWORD nErrorCode;
wchar_t sWarning[4096];
EXPECT_EQ(lib3mf_reader_getwarning(p3MFReader.get(), iWarning, &nErrorCode, sWarning, 4096, NULL), S_OK) << L"Could not get warning " << iWarning;
EXPECT_TRUE(true) << iWarning << L": " << nErrorCode << ", " << sWarning;
}
DWORD nErrorCode;
LPCSTR sErrorMessage;
lib3mf_getlasterror(pModel.get(), &nErrorCode, &sErrorMessage);
EXPECT_EQ(hResult, S_OK) << L"Could not read 3MF file. " << hResult << ", " << nErrorCode << ", " << sErrorMessage;
return true;
//// Re-Output file
//CustomLib3MFBase p3MFWriter;
//std::string sFileName = fileName;
//EXPECT_EQ(NMR::lib3mf_model_querywriter(pModel.get(), "3mf", &p3MFWriter.get()), S_OK) << "Cannot create model writer";
//EXPECT_EQ(lib3mf_writer_setprogresscallback(p3MFWriter.get(), Callback_Positive, &nUserData), S_OK) << L"Could not set progress callback";
//EXPECT_EQ(NMR::lib3mf_writer_writetofileutf8(p3MFWriter.get(), (std::string("TestOutput") + separator() + +"ReOut_Progress" + fileName).c_str()), S_OK) << "Cannot write 3mf";
//
//return true;
}
}
// A new one of these is create for each test
class ProgressCallback_ReadWriteFileTest : public testing::TestWithParam<const char*>
{
public:
virtual void SetUp() {}
virtual void TearDown() {}
};
INSTANTIATE_TEST_CASE_P(InstantiationName,
ProgressCallback_ReadWriteFileTest,
::testing::Values("Replaces_PP_701_04.3mf", "2ProductionBoxes_OneSliceFile.3mf"));
TEST_P(ProgressCallback_ReadWriteFileTest, LoadWrite)
{
ASSERT_TRUE(NMR::LoadFileWithProgress(GetParam()));
}
|