|
@@ -43,31 +43,43 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
#include <cstdlib>
|
|
#include <cstdlib>
|
|
#include <string>
|
|
#include <string>
|
|
|
|
|
|
|
|
+using namespace ::Assimp;
|
|
|
|
+
|
|
|
|
+class utDefaultIOStream : public ::testing::Test {
|
|
|
|
+ // empty
|
|
|
|
+};
|
|
|
|
+
|
|
#if defined(__GNUC__) || defined(__clang__)
|
|
#if defined(__GNUC__) || defined(__clang__)
|
|
#define TMP_PATH "/tmp/"
|
|
#define TMP_PATH "/tmp/"
|
|
-void MakeTmpFilePath(char* tmplate)
|
|
|
|
|
|
+FILE* MakeTmpFilePath(char* tmplate)
|
|
{
|
|
{
|
|
- auto err = mkstemp(tmplate);
|
|
|
|
- ASSERT_NE(err, -1);
|
|
|
|
|
|
+ auto fd = mkstemp(tmplate);
|
|
|
|
+ EXPECT_NE(-1, fd);
|
|
|
|
+ if(fd == -1)
|
|
|
|
+ {
|
|
|
|
+ return nullptr;
|
|
|
|
+ }
|
|
|
|
+ auto fs = fdopen(fd, "w+");
|
|
|
|
+ EXPECT_NE(nullptr, fs);
|
|
|
|
+ return fs;
|
|
}
|
|
}
|
|
#elif defined(_MSC_VER)
|
|
#elif defined(_MSC_VER)
|
|
#include <io.h>
|
|
#include <io.h>
|
|
#define TMP_PATH "./"
|
|
#define TMP_PATH "./"
|
|
-void MakeTmpFilePath(char* tmplate)
|
|
|
|
|
|
+FILE* MakeTmpFilePath(char* tmplate)
|
|
{
|
|
{
|
|
auto pathtemplate = _mktemp(tmplate);
|
|
auto pathtemplate = _mktemp(tmplate);
|
|
- ASSERT_NE(pathtemplate, nullptr);
|
|
|
|
|
|
+ EXPECT_NE(pathtemplate, nullptr);
|
|
|
|
+ if(pathtemplate == nullptr)
|
|
|
|
+ {
|
|
|
|
+ return nullptr;
|
|
|
|
+ }
|
|
|
|
+ auto* fs = std::fopen(pathtemplate, "w+");
|
|
|
|
+ EXPECT_NE(fs, nullptr);
|
|
|
|
+ return fs;
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
|
|
-using namespace ::Assimp;
|
|
|
|
-
|
|
|
|
-class utDefaultIOStream : public ::testing::Test {
|
|
|
|
- // empty
|
|
|
|
-};
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
const char data[]{"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Qui\
|
|
const char data[]{"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Qui\
|
|
sque luctus sem diam, ut eleifend arcu auctor eu. Vestibulum id est vel nulla l\
|
|
sque luctus sem diam, ut eleifend arcu auctor eu. Vestibulum id est vel nulla l\
|
|
obortis malesuada ut sed turpis. Nulla a volutpat tortor. Nunc vestibulum portt\
|
|
obortis malesuada ut sed turpis. Nulla a volutpat tortor. Nunc vestibulum portt\
|
|
@@ -78,18 +90,18 @@ TEST_F( utDefaultIOStream, FileSizeTest ) {
|
|
const auto dataCount = dataSize / sizeof(*data);
|
|
const auto dataCount = dataSize / sizeof(*data);
|
|
|
|
|
|
char fpath[] = { TMP_PATH"rndfp.XXXXXX" };
|
|
char fpath[] = { TMP_PATH"rndfp.XXXXXX" };
|
|
- MakeTmpFilePath(fpath);
|
|
|
|
|
|
+ auto* fs = MakeTmpFilePath(fpath);
|
|
|
|
+ ASSERT_NE(nullptr, fs);
|
|
|
|
+ {
|
|
|
|
+ auto written = std::fwrite(data, sizeof(*data), dataCount, fs );
|
|
|
|
+ EXPECT_NE( 0U, written );
|
|
|
|
|
|
- auto *fs = std::fopen(fpath, "w+" );
|
|
|
|
- ASSERT_NE(fs, nullptr);
|
|
|
|
- auto written = std::fwrite(data, sizeof(*data), dataCount, fs );
|
|
|
|
- EXPECT_NE( 0U, written );
|
|
|
|
- auto vflush = std::fflush( fs );
|
|
|
|
- ASSERT_EQ(vflush, 0);
|
|
|
|
|
|
+ auto vflush = std::fflush( fs );
|
|
|
|
+ ASSERT_EQ(vflush, 0);
|
|
|
|
|
|
- TestDefaultIOStream myStream( fs, fpath);
|
|
|
|
- size_t size = myStream.FileSize();
|
|
|
|
- EXPECT_EQ( size, dataSize);
|
|
|
|
|
|
+ TestDefaultIOStream myStream( fs, fpath);
|
|
|
|
+ size_t size = myStream.FileSize();
|
|
|
|
+ EXPECT_EQ( size, dataSize);
|
|
|
|
+ }
|
|
remove(fpath);
|
|
remove(fpath);
|
|
-
|
|
|
|
}
|
|
}
|