| // Copyright 2019 The ChromiumOS Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef PATCHPANEL_FAKE_PROCESS_RUNNER_H_ |
| #define PATCHPANEL_FAKE_PROCESS_RUNNER_H_ |
| |
| #include <string> |
| #include <string_view> |
| #include <vector> |
| |
| #include <brillo/minijail/minijail.h> |
| |
| #include "patchpanel/minijailed_process_runner.h" |
| |
| namespace patchpanel { |
| |
| // All commands always succeed. |
| class FakeProcessRunner : public MinijailedProcessRunner { |
| public: |
| FakeProcessRunner() |
| : MinijailedProcessRunner(/*minijail=*/nullptr, /*system=*/nullptr) {} |
| FakeProcessRunner(const FakeProcessRunner&) = delete; |
| FakeProcessRunner& operator=(const FakeProcessRunner&) = delete; |
| |
| ~FakeProcessRunner() = default; |
| |
| int RunIp(base::span<std::string_view> argv, |
| bool as_patchpanel_user, |
| bool log_failures) override { |
| return 0; |
| } |
| |
| int RunIptables(std::string_view iptables_path, |
| Iptables::Table table, |
| Iptables::Command command, |
| std::string_view chain, |
| base::span<std::string_view> argv, |
| bool log_failures, |
| std::string* output) override { |
| return 0; |
| } |
| |
| int RunIptablesRestore(std::string_view iptables_restore_path, |
| std::string_view script_file, |
| bool log_failures) override { |
| return 0; |
| } |
| |
| int RunIpNetns(base::span<std::string_view> argv, |
| bool log_failures) override { |
| return 0; |
| } |
| |
| bool RunPendingIptablesInBatch() override { return true; } |
| }; |
| |
| } // namespace patchpanel |
| |
| #endif // PATCHPANEL_FAKE_PROCESS_RUNNER_H_ |