summaryrefslogtreecommitdiffstats
path: root/tests/component/updater_test.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2016-11-08 22:08:23 +0100
committerandroid-build-merger <android-build-merger@google.com>2016-11-08 22:08:23 +0100
commitcd3513c8dd3fdda08faa0f3935767cad45c796ec (patch)
tree0b4e061b29b9b3801f6d162cda6d5a9fff41ecd1 /tests/component/updater_test.cpp
parentMerge "Move recovery_test.cpp out of unit test" am: 8bfd96c0f8 am: e9390679c9 (diff)
parentMerge "Make make_parent() to take const argument" am: 52e2a97aa7 (diff)
downloadandroid_bootable_recovery-cd3513c8dd3fdda08faa0f3935767cad45c796ec.tar
android_bootable_recovery-cd3513c8dd3fdda08faa0f3935767cad45c796ec.tar.gz
android_bootable_recovery-cd3513c8dd3fdda08faa0f3935767cad45c796ec.tar.bz2
android_bootable_recovery-cd3513c8dd3fdda08faa0f3935767cad45c796ec.tar.lz
android_bootable_recovery-cd3513c8dd3fdda08faa0f3935767cad45c796ec.tar.xz
android_bootable_recovery-cd3513c8dd3fdda08faa0f3935767cad45c796ec.tar.zst
android_bootable_recovery-cd3513c8dd3fdda08faa0f3935767cad45c796ec.zip
Diffstat (limited to 'tests/component/updater_test.cpp')
-rw-r--r--tests/component/updater_test.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/component/updater_test.cpp b/tests/component/updater_test.cpp
index f922933cd..acc2b4040 100644
--- a/tests/component/updater_test.cpp
+++ b/tests/component/updater_test.cpp
@@ -208,4 +208,26 @@ TEST_F(UpdaterTest, rename) {
// Already renamed.
expect(temp_file2.path, script2.c_str(), kNoCause);
+
+ // Parents create successfully.
+ TemporaryFile temp_file3;
+ TemporaryDir td;
+ std::string temp_dir = std::string(td.path) + "/aaa/bbb/a.txt";
+ std::string script3("rename(\"" + std::string(temp_file3.path) + "\", \"" +
+ temp_dir + "\")");
+ expect(temp_dir.c_str(), script3.c_str(), kNoCause);
+}
+
+TEST_F(UpdaterTest, symlink) {
+ // symlink expects 1+ argument.
+ expect(nullptr, "symlink()", kArgsParsingFailure);
+
+ // symlink should fail if src is an empty string.
+ TemporaryFile temp_file1;
+ std::string script1("symlink(\"" + std::string(temp_file1.path) + "\", \"\")");
+ expect(nullptr, script1.c_str(), kSymlinkFailure);
+
+ // symlink failed to remove old src.
+ std::string script2("symlink(\"" + std::string(temp_file1.path) + "\", \"/proc\")");
+ expect(nullptr, script2.c_str(), kSymlinkFailure);
}