forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add file system error injection in table writer fuzzer
- Loading branch information
1 parent
e67f11b
commit 35a79e0
Showing
9 changed files
with
191 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#include "velox/dwio/common/tests/FaultyFileSink.h" | ||
#include "velox/common/base/Fs.h" | ||
#include "velox/common/file/FileSystems.h" | ||
#include "velox/common/file/tests/FaultyFileSystem.h" | ||
#include "velox/dwio/common/FileSink.h" | ||
#include "velox/dwio/common/exception/Exception.h" | ||
|
||
namespace facebook::velox::dwio::common { | ||
namespace { | ||
using tests::utils::FaultyFileSystem; | ||
|
||
std::unique_ptr<FileSink> createFaultyFileSink( | ||
const std::string& filePath, | ||
const FileSink::Options& options) { | ||
if (filePath.find("faulty:") == 0) { | ||
return std::make_unique<FaultyFileSink>( | ||
filePath, filePath.substr(7), options); | ||
} | ||
return nullptr; | ||
} | ||
} // namespace | ||
|
||
FaultyFileSink::FaultyFileSink( | ||
const std::string& faultyName, | ||
const std::string& name, | ||
const Options& options) | ||
: LocalFileSink{name, options, false}, faultyName_(faultyName) { | ||
auto fs = filesystems::getFileSystem(faultyName_, nullptr); | ||
writeFile_ = fs->openFileForWrite(faultyName_); | ||
} | ||
|
||
void registerFaultyFileSinks() { | ||
facebook::velox::dwio::common::FileSink::registerFactory( | ||
(createFaultyFileSink)); | ||
} | ||
} // namespace facebook::velox::dwio::common |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <chrono> | ||
|
||
#include "velox/common/config/Config.h" | ||
#include "velox/common/file/File.h" | ||
#include "velox/common/file/tests/FaultyFile.h" | ||
#include "velox/common/io/IoStatistics.h" | ||
#include "velox/dwio/common/Closeable.h" | ||
#include "velox/dwio/common/DataBuffer.h" | ||
#include "velox/dwio/common/FileSink.h" | ||
#include "velox/dwio/common/MetricsLog.h" | ||
|
||
namespace facebook::velox::dwio::common { | ||
using namespace facebook::velox::io; | ||
|
||
class FaultyFileSink : public LocalFileSink { | ||
public: | ||
FaultyFileSink( | ||
const std::string& faultyName, | ||
const std::string& name, | ||
const Options& options); | ||
|
||
private: | ||
std::string faultyName_; | ||
}; | ||
|
||
void registerFaultyFileSinks(); | ||
|
||
} // namespace facebook::velox::dwio::common |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters