
This reverts commit 6b9dec0d16f2df59fa2820c5ec1341be52fb9f32. Reason for revert: speculative revert for breaking internal projects Original change's description: > Delete rtc::Pathname > > Bug: webrtc:6424 > Change-Id: Iec01dc5dd1426d4558983b828b67af872107d723 > Reviewed-on: https://webrtc-review.googlesource.com/c/108400 > Commit-Queue: Niels Moller <nisse@webrtc.org> > Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#25479} TBR=kwiberg@webrtc.org,nisse@webrtc.org Change-Id: I3129a81a1d8e36b3e6c67572410bdc478ec4d5e9 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: webrtc:6424 Reviewed-on: https://webrtc-review.googlesource.com/c/109201 Reviewed-by: Qingsi Wang <qingsi@webrtc.org> Commit-Queue: Qingsi Wang <qingsi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25490}
63 lines
1.9 KiB
C++
63 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "test/testsupport/test_artifacts.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <string>
|
|
|
|
#include "rtc_base/file.h"
|
|
#include "rtc_base/flags.h"
|
|
#include "rtc_base/pathutils.h"
|
|
#include "rtc_base/platform_file.h"
|
|
#include "test/gtest.h"
|
|
#include "test/testsupport/fileutils.h"
|
|
|
|
WEBRTC_DECLARE_string(test_artifacts_dir);
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
|
|
TEST(IsolatedOutputTest, ShouldRejectInvalidIsolatedOutDir) {
|
|
const char* backup = FLAG_test_artifacts_dir;
|
|
FLAG_test_artifacts_dir = "";
|
|
ASSERT_FALSE(WriteToTestArtifactsDir("a-file", "some-contents"));
|
|
FLAG_test_artifacts_dir = backup;
|
|
}
|
|
|
|
TEST(IsolatedOutputTest, ShouldRejectInvalidFileName) {
|
|
ASSERT_FALSE(WriteToTestArtifactsDir(nullptr, "some-contents"));
|
|
ASSERT_FALSE(WriteToTestArtifactsDir("", "some-contents"));
|
|
}
|
|
|
|
// Sets isolated_out_dir=<a-writable-path> to execute this test.
|
|
TEST(IsolatedOutputTest, ShouldBeAbleToWriteContent) {
|
|
const char* filename = "a-file";
|
|
const char* content = "some-contents";
|
|
if (WriteToTestArtifactsDir(filename, content)) {
|
|
std::string out_file = JoinFilename(FLAG_test_artifacts_dir, filename);
|
|
rtc::File input = rtc::File::Open(out_file);
|
|
EXPECT_TRUE(input.IsOpen());
|
|
EXPECT_TRUE(input.Seek(0));
|
|
uint8_t buffer[32];
|
|
EXPECT_EQ(input.Read(buffer, strlen(content)), strlen(content));
|
|
buffer[strlen(content)] = 0;
|
|
EXPECT_EQ(std::string(content),
|
|
std::string(reinterpret_cast<char*>(buffer)));
|
|
input.Close();
|
|
|
|
EXPECT_TRUE(rtc::File::Remove(out_file));
|
|
}
|
|
}
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|