Merge pull request #8 from archshift/createfile
Added tests for CreateFile
This commit is contained in:
commit
9b5afd3ec5
37
source/scope_exit.h
Normal file
37
source/scope_exit.h
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
// Copyright 2014 Citra Emulator Project
|
||||||
|
// Licensed under GPLv2+
|
||||||
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
namespace detail {
|
||||||
|
template <typename Func>
|
||||||
|
struct ScopeExitHelper {
|
||||||
|
explicit ScopeExitHelper(Func&& func) : func(std::move(func)) {}
|
||||||
|
~ScopeExitHelper() { func(); }
|
||||||
|
|
||||||
|
Func func;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename Func>
|
||||||
|
ScopeExitHelper<Func> ScopeExit(Func&& func) { return ScopeExitHelper<Func>(std::move(func)); }
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This macro allows you to conveniently specify a block of code that will run on scope exit. Handy
|
||||||
|
* for doing ad-hoc clean-up tasks in a function with multiple returns.
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* \code
|
||||||
|
* const int saved_val = g_foo;
|
||||||
|
* g_foo = 55;
|
||||||
|
* SCOPE_EXIT({ g_foo = saved_val; });
|
||||||
|
*
|
||||||
|
* if (Bar()) {
|
||||||
|
* return 0;
|
||||||
|
* } else {
|
||||||
|
* return 20;
|
||||||
|
* }
|
||||||
|
* \endcode
|
||||||
|
*/
|
||||||
|
#define SCOPE_EXIT(body) auto scope_exit_helper_##__LINE__ = detail::ScopeExit([&]() body)
|
@ -2,6 +2,7 @@
|
|||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <3ds.h>
|
#include <3ds.h>
|
||||||
|
|
||||||
|
#include "scope_exit.h"
|
||||||
#include "tests/test.h"
|
#include "tests/test.h"
|
||||||
#include "tests/fs/fs_sdmc.h"
|
#include "tests/fs/fs_sdmc.h"
|
||||||
|
|
||||||
@ -10,10 +11,11 @@ namespace SDMC {
|
|||||||
|
|
||||||
static bool TestFileCreateDelete(FS_archive sdmcArchive)
|
static bool TestFileCreateDelete(FS_archive sdmcArchive)
|
||||||
{
|
{
|
||||||
Handle fileHandle;
|
Handle fileHandle, fileHandle2;
|
||||||
const static FS_path filePath = FS_makePath(PATH_CHAR, "/test_file_create_delete.txt");
|
const static FS_path filePath = FS_makePath(PATH_CHAR, "/test_file_create_delete.txt");
|
||||||
|
const static FS_path filePath2 = FS_makePath(PATH_CHAR, "/test_file_create_2.txt");
|
||||||
|
|
||||||
// Create file (not interested in opening the handle)
|
// Create file with OpenFile (not interested in opening the handle)
|
||||||
SoftAssert(FSUSER_OpenFile(NULL, &fileHandle, sdmcArchive, filePath, FS_OPEN_CREATE | FS_OPEN_WRITE, 0) == 0);
|
SoftAssert(FSUSER_OpenFile(NULL, &fileHandle, sdmcArchive, filePath, FS_OPEN_CREATE | FS_OPEN_WRITE, 0) == 0);
|
||||||
FSFILE_Close(fileHandle);
|
FSFILE_Close(fileHandle);
|
||||||
|
|
||||||
@ -27,6 +29,19 @@ static bool TestFileCreateDelete(FS_archive sdmcArchive)
|
|||||||
SoftAssert(FSUSER_OpenFile(NULL, &fileHandle, sdmcArchive, filePath, FS_OPEN_READ, 0) != 0);
|
SoftAssert(FSUSER_OpenFile(NULL, &fileHandle, sdmcArchive, filePath, FS_OPEN_READ, 0) != 0);
|
||||||
FSFILE_Close(fileHandle);
|
FSFILE_Close(fileHandle);
|
||||||
|
|
||||||
|
// Create file with CreateFile
|
||||||
|
SoftAssert(FSUSER_CreateFile(NULL, sdmcArchive, filePath2, 0) == 0);
|
||||||
|
SCOPE_EXIT({
|
||||||
|
FSFILE_Close(fileHandle2);
|
||||||
|
FSUSER_DeleteFile(NULL, sdmcArchive, filePath2);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Make sure the new file exists
|
||||||
|
SoftAssert(FSUSER_OpenFile(NULL, &fileHandle2, sdmcArchive, filePath2, FS_OPEN_READ, 0) == 0);
|
||||||
|
|
||||||
|
// Try and create a file over an already-existing file (Should fail)
|
||||||
|
SoftAssert(FSUSER_CreateFile(NULL, sdmcArchive, filePath2, 0) != 0);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,9 +51,8 @@ static bool TestFileRename(FS_archive sdmcArchive)
|
|||||||
const static FS_path filePath = FS_makePath(PATH_CHAR, "/test_file_rename.txt");
|
const static FS_path filePath = FS_makePath(PATH_CHAR, "/test_file_rename.txt");
|
||||||
const static FS_path newFilePath = FS_makePath(PATH_CHAR, "/test_file_rename_new.txt");
|
const static FS_path newFilePath = FS_makePath(PATH_CHAR, "/test_file_rename_new.txt");
|
||||||
|
|
||||||
// Create file (not interested in opening the handle)
|
// Create file
|
||||||
FSUSER_OpenFile(NULL, &fileHandle, sdmcArchive, filePath, FS_OPEN_CREATE | FS_OPEN_WRITE, 0);
|
FSUSER_CreateFile(NULL, sdmcArchive, filePath, 0);
|
||||||
FSFILE_Close(fileHandle);
|
|
||||||
|
|
||||||
SoftAssert(FSUSER_RenameFile(NULL, sdmcArchive, filePath, sdmcArchive, newFilePath) == 0);
|
SoftAssert(FSUSER_RenameFile(NULL, sdmcArchive, filePath, sdmcArchive, newFilePath) == 0);
|
||||||
|
|
||||||
@ -70,6 +84,10 @@ static bool TestFileWriteRead(FS_archive sdmcArchive)
|
|||||||
|
|
||||||
// Create file
|
// Create file
|
||||||
FSUSER_OpenFile(NULL, &fileHandle, sdmcArchive, filePath, FS_OPEN_CREATE | FS_OPEN_WRITE, 0);
|
FSUSER_OpenFile(NULL, &fileHandle, sdmcArchive, filePath, FS_OPEN_CREATE | FS_OPEN_WRITE, 0);
|
||||||
|
SCOPE_EXIT({ // Close and delete file no matter what happens
|
||||||
|
FSFILE_Close(fileHandle);
|
||||||
|
FSUSER_DeleteFile(NULL, sdmcArchive, filePath);
|
||||||
|
});
|
||||||
|
|
||||||
// Write to file
|
// Write to file
|
||||||
SoftAssert(FSFILE_Write(fileHandle, &bytesWritten, 0, stringWritten, strlen(stringWritten)+1, FS_WRITE_FLUSH) == 0);
|
SoftAssert(FSFILE_Write(fileHandle, &bytesWritten, 0, stringWritten, strlen(stringWritten)+1, FS_WRITE_FLUSH) == 0);
|
||||||
@ -87,9 +105,6 @@ static bool TestFileWriteRead(FS_archive sdmcArchive)
|
|||||||
// Verify string contents
|
// Verify string contents
|
||||||
SoftAssert(strcmp(stringRead.get(), stringWritten) == 0);
|
SoftAssert(strcmp(stringRead.get(), stringWritten) == 0);
|
||||||
|
|
||||||
FSFILE_Close(fileHandle);
|
|
||||||
FSUSER_DeleteFile(NULL, sdmcArchive, filePath);
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user