aboutsummaryrefslogtreecommitdiff
path: root/tests/getcwd_test.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2012-08-16 15:59:12 -0700
committerElliott Hughes <enh@google.com>2012-08-16 15:59:12 -0700
commit04a83a48ed89f433c78e31106ed50059764797a0 (patch)
tree6629275f2829d31262bc21cd2e2aea9fce4796ff /tests/getcwd_test.cpp
parent449d4634bea0ff8f6b29a2826871279dd654f941 (diff)
downloadbionic-04a83a48ed89f433c78e31106ed50059764797a0.tar.gz
Enhance getcwd(3) to handle NULL like glibc.
Bug: http://code.google.com/p/android/issues/detail?id=36085 Change-Id: I960a1b585887eb66176c61d29c5c61c239a4003f
Diffstat (limited to 'tests/getcwd_test.cpp')
-rw-r--r--tests/getcwd_test.cpp85
1 files changed, 85 insertions, 0 deletions
diff --git a/tests/getcwd_test.cpp b/tests/getcwd_test.cpp
new file mode 100644
index 000000000..45ff395bd
--- /dev/null
+++ b/tests/getcwd_test.cpp
@@ -0,0 +1,85 @@
+/*
+ * Copyright (C) 2012 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <gtest/gtest.h>
+
+#include <errno.h>
+#include <limits.h>
+#include <unistd.h>
+
+TEST(getcwd, auto_full) {
+ // If we let the library do all the work, everything's fine.
+ errno = 0;
+ char* cwd = getcwd(NULL, 0);
+ ASSERT_TRUE(cwd != NULL);
+ ASSERT_EQ(errno, 0);
+ ASSERT_GE(strlen(cwd), 1U);
+ free(cwd);
+}
+
+TEST(getcwd, auto_reasonable) {
+ // If we ask the library to allocate a reasonable buffer, everything's fine.
+ errno = 0;
+ char* cwd = getcwd(NULL, PATH_MAX);
+ ASSERT_TRUE(cwd != NULL);
+ ASSERT_EQ(errno, 0);
+ ASSERT_GE(strlen(cwd), 1U);
+ free(cwd);
+}
+
+TEST(getcwd, auto_too_small) {
+ // If we ask the library to allocate a too-small buffer, ERANGE.
+ errno = 0;
+ char* cwd = getcwd(NULL, 1);
+ ASSERT_TRUE(cwd == NULL);
+ ASSERT_EQ(errno, ERANGE);
+}
+
+TEST(getcwd, auto_too_large) {
+ // If we ask the library to allocate an unreasonably large buffer, ERANGE.
+ errno = 0;
+ char* cwd = getcwd(NULL, static_cast<size_t>(-1));
+ ASSERT_TRUE(cwd == NULL);
+ ASSERT_EQ(errno, ENOMEM);
+}
+
+TEST(getcwd, manual_too_small) {
+ // If we allocate a too-small buffer, ERANGE.
+ char tiny_buf[1];
+ errno = 0;
+ char* cwd = getcwd(tiny_buf, sizeof(tiny_buf));
+ ASSERT_TRUE(cwd == NULL);
+ ASSERT_EQ(errno, ERANGE);
+}
+
+TEST(getcwd, manual_zero) {
+ // If we allocate a zero-length buffer, EINVAL.
+ char tiny_buf[1];
+ errno = 0;
+ char* cwd = getcwd(tiny_buf, 0);
+ ASSERT_TRUE(cwd == NULL);
+ ASSERT_EQ(errno, EINVAL);
+}
+
+TEST(getcwd, manual_path_max) {
+ char* buf = new char[PATH_MAX];
+ errno = 0;
+ char* cwd = getcwd(buf, PATH_MAX);
+ ASSERT_TRUE(cwd == buf);
+ ASSERT_EQ(errno, 0);
+ ASSERT_GE(strlen(cwd), 1U);
+ delete[] cwd;
+}