blob: 0a87af26b9dd939bf54bfd61e38dbfd4e99b14d3 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <utility>
#include <zxtest/zxtest.h>
#include "src/lib/storage/vfs/cpp/remote_dir.h"
namespace {
TEST(RemoteDir, ApiTest) {
auto endpoints = fidl::CreateEndpoints<fuchsia_io::Directory>();
ASSERT_EQ(ZX_OK, endpoints.status_value());
const fidl::UnownedClientEnd unowned_client = endpoints->client.borrow();
auto dir = fbl::MakeRefCounted<fs::RemoteDir>(std::move(endpoints->client));
// get attributes
fs::VnodeAttributes attr;
EXPECT_EQ(ZX_OK, dir->GetAttributes(&attr));
EXPECT_EQ(V_TYPE_DIR | V_IRUSR, attr.mode);
EXPECT_EQ(1, attr.link_count);
// get remote properties
ASSERT_TRUE(dir->IsRemote());
EXPECT_EQ(dir->client_end(), unowned_client);
}
} // namespace