diff options
| author | Yongqin Liu <yongqin.liu@linaro.org> | 2016-12-28 16:06:19 +0800 |
|---|---|---|
| committer | Tom Cherry <tomcherry@google.com> | 2017-04-04 06:21:29 +0000 |
| commit | dbe88e7953ed53961056c7f5531d91d229293462 (patch) | |
| tree | 8fb5586888fdaabceee56c689c53edba71bc8545 /init/util_test.cpp | |
| parent | 53089aa25ca9707e22e45e862f794bfc958d302a (diff) | |
| download | system_core-dbe88e7953ed53961056c7f5531d91d229293462.tar.gz system_core-dbe88e7953ed53961056c7f5531d91d229293462.tar.bz2 system_core-dbe88e7953ed53961056c7f5531d91d229293462.zip | |
init: use read_file and write_file to implement do_copy builtin
this will make the implementation more cleaner,
and has error message output when failed on some operations
also add the O_TRUNC flag explicitly for the open function
called in write_file.
And add more test on read_file and write_file functions
Bug: 36726045
Test: manual with hikey
Test: boot and init tests on bullhead
Test: cast with fugu, per b/36726045
Merged-In: If3c30a2fff58cfece2fcd27e69c30382146e6808
Change-Id: If3c30a2fff58cfece2fcd27e69c30382146e6808
Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
Diffstat (limited to 'init/util_test.cpp')
| -rw-r--r-- | init/util_test.cpp | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/init/util_test.cpp b/init/util_test.cpp index 613499813..0c0350a60 100644 --- a/init/util_test.cpp +++ b/init/util_test.cpp @@ -17,7 +17,10 @@ #include "util.h" #include <errno.h> +#include <fcntl.h> +#include <sys/stat.h> +#include <android-base/stringprintf.h> #include <android-base/test_utils.h> #include <gtest/gtest.h> @@ -29,6 +32,35 @@ TEST(util, read_file_ENOENT) { EXPECT_EQ("", s); // s was cleared. } +TEST(util, read_file_group_writeable) { + std::string s("hello"); + TemporaryFile tf; + ASSERT_TRUE(tf.fd != -1); + EXPECT_TRUE(write_file(tf.path, s)) << strerror(errno); + EXPECT_NE(-1, fchmodat(AT_FDCWD, tf.path, 0620, AT_SYMLINK_NOFOLLOW)) << strerror(errno); + EXPECT_FALSE(read_file(tf.path, &s)) << strerror(errno); + EXPECT_EQ("", s); // s was cleared. +} + +TEST(util, read_file_world_writeable) { + std::string s("hello"); + TemporaryFile tf; + ASSERT_TRUE(tf.fd != -1); + EXPECT_TRUE(write_file(tf.path, s.c_str())) << strerror(errno); + EXPECT_NE(-1, fchmodat(AT_FDCWD, tf.path, 0602, AT_SYMLINK_NOFOLLOW)) << strerror(errno); + EXPECT_FALSE(read_file(tf.path, &s)) << strerror(errno); + EXPECT_EQ("", s); // s was cleared. +} + +TEST(util, read_file_symbolic_link) { + std::string s("hello"); + errno = 0; + // lrwxrwxrwx 1 root root 13 1970-01-01 00:00 charger -> /sbin/healthd + EXPECT_FALSE(read_file("/charger", &s)); + EXPECT_EQ(ELOOP, errno); + EXPECT_EQ("", s); // s was cleared. +} + TEST(util, read_file_success) { std::string s("hello"); EXPECT_TRUE(read_file("/proc/version", &s)); @@ -55,6 +87,34 @@ TEST(util, write_file_binary) { EXPECT_EQ(10u, read_back_contents.size()); } +TEST(util, write_file_not_exist) { + std::string s("hello"); + std::string s2("hello"); + TemporaryDir test_dir; + std::string path = android::base::StringPrintf("%s/does-not-exist", test_dir.path); + EXPECT_TRUE(write_file(path, s)); + EXPECT_TRUE(read_file(path, &s2)); + EXPECT_EQ(s, s2); + struct stat sb; + int fd = open(path.c_str(), O_RDONLY | O_NOFOLLOW | O_CLOEXEC); + EXPECT_NE(-1, fd); + EXPECT_EQ(0, fstat(fd, &sb)); + EXPECT_EQ((const unsigned int)(S_IRUSR | S_IWUSR), sb.st_mode & 0777); + EXPECT_EQ(0, unlink(path.c_str())); +} + +TEST(util, write_file_exist) { + std::string s2(""); + TemporaryFile tf; + ASSERT_TRUE(tf.fd != -1); + EXPECT_TRUE(write_file(tf.path, "1hello1")) << strerror(errno); + EXPECT_TRUE(read_file(tf.path, &s2)); + EXPECT_STREQ("1hello1", s2.c_str()); + EXPECT_TRUE(write_file(tf.path, "2ll2")); + EXPECT_TRUE(read_file(tf.path, &s2)); + EXPECT_STREQ("2ll2", s2.c_str()); +} + TEST(util, decode_uid) { EXPECT_EQ(0U, decode_uid("root")); EXPECT_EQ(UINT_MAX, decode_uid("toot")); |
