VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedFolders/teststubs.h@ 66250

Last change on this file since 66250 was 62489, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1/** @file
2 * VBox Shared Folders testcase stub redefinitions.
3 */
4
5/*
6 * Copyright (C) 2011-2016 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17/**
18 * Macros for renaming iprt file operations to redirect them to testcase
19 * stub functions (mocks). The religiously correct way to do this would be
20 * to make the service use a file operations structure with function pointers
21 * but I'm not sure that would be universally appreciated. */
22
23#ifndef __VBSF_TEST_STUBS__H
24#define __VBSF_TEST_STUBS__H
25
26#include <iprt/dir.h>
27#include <iprt/time.h>
28
29#define RTDirClose testRTDirClose
30extern int testRTDirClose(PRTDIR pDir);
31#define RTDirCreate testRTDirCreate
32extern int testRTDirCreate(const char *pszPath, RTFMODE fMode, uint32_t fCreate);
33#define RTDirOpen testRTDirOpen
34extern int testRTDirOpen(PRTDIR *ppDir, const char *pszPath);
35#define RTDirOpenFiltered testRTDirOpenFiltered
36extern int testRTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fOpen);
37#define RTDirQueryInfo testRTDirQueryInfo
38extern int testRTDirQueryInfo(PRTDIR pDir, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs);
39#define RTDirRemove testRTDirRemove
40extern int testRTDirRemove(const char *pszPath);
41#define RTDirReadEx testRTDirReadEx
42extern int testRTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags);
43#define RTDirSetTimes testRTDirSetTimes
44extern int testRTDirSetTimes(PRTDIR pDir, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
45#define RTFileClose testRTFileClose
46extern int testRTFileClose(RTFILE hFile);
47#define RTFileDelete testRTFileDelete
48extern int testRTFileDelete(const char *pszFilename);
49#define RTFileFlush testRTFileFlush
50extern int testRTFileFlush(RTFILE hFile);
51#define RTFileLock testRTFileLock
52extern int testRTFileLock(RTFILE hFile, unsigned fLock, int64_t offLock, uint64_t cbLock);
53#define RTFileOpen testRTFileOpen
54extern int testRTFileOpen(PRTFILE pFile, const char *pszFilename, uint64_t fOpen);
55#define RTFileQueryInfo testRTFileQueryInfo
56extern int testRTFileQueryInfo(RTFILE hFile, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs);
57#define RTFileRead testRTFileRead
58extern int testRTFileRead(RTFILE hFile, void *pvBuf, size_t cbToRead, size_t *pcbRead);
59#define RTFileSetMode testRTFileSetMode
60extern int testRTFileSetMode(RTFILE hFile, RTFMODE fMode);
61#define RTFileSetSize testRTFileSetSize
62extern int testRTFileSetSize(RTFILE hFile, uint64_t cbSize);
63#define RTFileSetTimes testRTFileSetTimes
64extern int testRTFileSetTimes(RTFILE hFile, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
65#define RTFileSeek testRTFileSeek
66extern int testRTFileSeek(RTFILE hFile, int64_t offSeek, unsigned uMethod, uint64_t *poffActual);
67#define RTFileUnlock testRTFileUnlock
68extern int testRTFileUnlock(RTFILE hFile, int64_t offLock, uint64_t cbLock);
69#define RTFileWrite testRTFileWrite
70extern int testRTFileWrite(RTFILE hFile, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
71#define RTFsQueryProperties testRTFsQueryProperties
72extern int testRTFsQueryProperties(const char *pszFsPath, PRTFSPROPERTIES pProperties);
73#define RTFsQuerySerial testRTFsQuerySerial
74extern int testRTFsQuerySerial(const char *pszFsPath, uint32_t *pu32Serial);
75#define RTFsQuerySizes testRTFsQuerySizes
76extern int testRTFsQuerySizes(const char *pszFsPath, RTFOFF *pcbTotal, RTFOFF *pcbFree, uint32_t *pcbBlock, uint32_t *pcbSector);
77#define RTPathQueryInfoEx testRTPathQueryInfoEx
78extern int testRTPathQueryInfoEx(const char *pszPath, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags);
79#define RTSymlinkDelete testRTSymlinkDelete
80extern int testRTSymlinkDelete(const char *pszSymlink, uint32_t fDelete);
81#define RTSymlinkRead testRTSymlinkRead
82extern int testRTSymlinkRead(const char *pszSymlink, char *pszTarget, size_t cbTarget, uint32_t fRead);
83
84#endif /* __VBSF_TEST_STUBS__H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette