28e2075280
trunk/talk git-svn-id: http://webrtc.googlecode.com/svn/trunk@4318 4adac7df-926f-26a2-2b94-8c16560cd09d
271 lines
8.5 KiB
C++
271 lines
8.5 KiB
C++
/*
|
|
* libjingle
|
|
* Copyright 2004--2011, Google Inc.
|
|
*
|
|
* 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.
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
*/
|
|
|
|
#ifndef TALK_BASE_FILEUTILS_MOCK_H_
|
|
#define TALK_BASE_FILEUTILS_MOCK_H_
|
|
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "talk/base/fileutils.h"
|
|
#include "talk/base/gunit.h"
|
|
#include "talk/base/pathutils.h"
|
|
#include "talk/base/stream.h"
|
|
|
|
namespace talk_base {
|
|
|
|
class FakeFileStream : public FileStream {
|
|
public:
|
|
explicit FakeFileStream(const std::string & contents) :
|
|
string_stream_(contents)
|
|
{}
|
|
|
|
virtual StreamResult Read(void* buffer, size_t buffer_len,
|
|
size_t* read, int* error) {
|
|
return string_stream_.Read(buffer, buffer_len, read, error);
|
|
}
|
|
|
|
virtual void Close() {
|
|
return string_stream_.Close();
|
|
}
|
|
virtual bool GetSize(size_t* size) const {
|
|
return string_stream_.GetSize(size);
|
|
}
|
|
|
|
private:
|
|
StringStream string_stream_;
|
|
};
|
|
|
|
class FakeDirectoryIterator : public DirectoryIterator {
|
|
public:
|
|
typedef std::pair<std::string, std::string> File;
|
|
|
|
/*
|
|
* files should be sorted by directory
|
|
* put '/' at the end of file if you want it to be a directory
|
|
*
|
|
* Sample list:
|
|
* /var/dir/file1
|
|
* /var/dir/file2
|
|
* /var/dir/subdir1/
|
|
* /var/dir/subdir2/
|
|
* /var/dir2/file2
|
|
* /var/dir3/
|
|
*
|
|
* you can call Iterate for any path: /var, /var/dir, /var/dir2
|
|
* unrelated files will be ignored
|
|
*/
|
|
explicit FakeDirectoryIterator(const std::vector<File>& all_files) :
|
|
all_files_(all_files) {}
|
|
|
|
virtual bool Iterate(const Pathname& path) {
|
|
path_iterator_ = all_files_.begin();
|
|
path_ = path.pathname();
|
|
|
|
// make sure path ends end with '/'
|
|
if (path_.rfind(Pathname::DefaultFolderDelimiter()) != path_.size() - 1)
|
|
path_ += Pathname::DefaultFolderDelimiter();
|
|
|
|
return FakeDirectoryIterator::Search(std::string(""));
|
|
}
|
|
|
|
virtual bool Next() {
|
|
std::string current_name = Name();
|
|
path_iterator_++;
|
|
return FakeDirectoryIterator::Search(current_name);
|
|
}
|
|
|
|
bool Search(const std::string& current_name) {
|
|
for (; path_iterator_ != all_files_.end(); path_iterator_++) {
|
|
if (path_iterator_->first.find(path_) == 0
|
|
&& Name().compare(current_name) != 0) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
virtual bool IsDirectory() const {
|
|
std::string sub_path = path_iterator_->first;
|
|
|
|
return std::string::npos !=
|
|
sub_path.find(Pathname::DefaultFolderDelimiter(), path_.size());
|
|
}
|
|
|
|
virtual std::string Name() const {
|
|
std::string sub_path = path_iterator_->first;
|
|
|
|
// path - top level path (ex. /var/lib)
|
|
// sub_path - subpath under top level path (ex. /var/lib/dir/dir/file )
|
|
// find shortest non-trivial common path. (ex. /var/lib/dir)
|
|
size_t start = path_.size();
|
|
size_t end = sub_path.find(Pathname::DefaultFolderDelimiter(), start);
|
|
|
|
if (end != std::string::npos) {
|
|
return sub_path.substr(start, end - start);
|
|
} else {
|
|
return sub_path.substr(start);
|
|
}
|
|
}
|
|
|
|
private:
|
|
const std::vector<File> all_files_;
|
|
|
|
std::string path_;
|
|
std::vector<File>::const_iterator path_iterator_;
|
|
};
|
|
|
|
class FakeFileSystem : public FilesystemInterface {
|
|
public:
|
|
typedef std::pair<std::string, std::string> File;
|
|
|
|
explicit FakeFileSystem(const std::vector<File>& all_files) :
|
|
all_files_(all_files) {}
|
|
|
|
virtual DirectoryIterator *IterateDirectory() {
|
|
return new FakeDirectoryIterator(all_files_);
|
|
}
|
|
|
|
virtual FileStream * OpenFile(
|
|
const Pathname &filename,
|
|
const std::string &mode) {
|
|
std::vector<File>::const_iterator i_files = all_files_.begin();
|
|
std::string path = filename.pathname();
|
|
|
|
for (; i_files != all_files_.end(); i_files++) {
|
|
if (i_files->first.compare(path) == 0) {
|
|
return new FakeFileStream(i_files->second);
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
bool CreatePrivateFile(const Pathname &filename) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool DeleteFile(const Pathname &filename) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool DeleteEmptyFolder(const Pathname &folder) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool DeleteFolderContents(const Pathname &folder) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool DeleteFolderAndContents(const Pathname &folder) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool CreateFolder(const Pathname &pathname) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool MoveFolder(const Pathname &old_path, const Pathname &new_path) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool MoveFile(const Pathname &old_path, const Pathname &new_path) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool CopyFile(const Pathname &old_path, const Pathname &new_path) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool IsFolder(const Pathname &pathname) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool IsFile(const Pathname &pathname) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool IsAbsent(const Pathname &pathname) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool IsTemporaryPath(const Pathname &pathname) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool GetTemporaryFolder(Pathname &path, bool create,
|
|
const std::string *append) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
std::string TempFilename(const Pathname &dir, const std::string &prefix) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return std::string();
|
|
}
|
|
bool GetFileSize(const Pathname &path, size_t *size) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool GetFileTime(const Pathname &path, FileTimeType which,
|
|
time_t* time) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool GetAppPathname(Pathname *path) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool GetAppDataFolder(Pathname *path, bool per_user) {
|
|
EXPECT_TRUE(per_user) << "Unsupported operation";
|
|
#ifdef WIN32
|
|
path->SetPathname("c:\\Users\\test_user", "");
|
|
#else
|
|
path->SetPathname("/home/user/test_user", "");
|
|
#endif
|
|
return true;
|
|
}
|
|
bool GetAppTempFolder(Pathname *path) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
bool GetDiskFreeSpace(const Pathname &path, int64 *freebytes) {
|
|
EXPECT_TRUE(false) << "Unsupported operation";
|
|
return false;
|
|
}
|
|
Pathname GetCurrentDirectory() {
|
|
return Pathname();
|
|
}
|
|
|
|
private:
|
|
const std::vector<File> all_files_;
|
|
};
|
|
} // namespace talk_base
|
|
|
|
#endif // TALK_BASE_FILEUTILS_MOCK_H_
|