aboutsummaryrefslogtreecommitdiff
path: root/tests/mntent_test.cpp
blob: 4b8fc9a80b53bc12f6582aa20638baaab4ae718e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
 * Copyright (C) 2013 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 <mntent.h>

TEST(mntent, mntent_smoke) {
  // Read all the entries with getmntent().
  FILE* fp = setmntent("/proc/mounts", "r");
  ASSERT_TRUE(fp != nullptr);

  std::vector<std::string> fsnames;
  std::vector<std::string> dirs;
  mntent* me;
  while ((me = getmntent(fp)) != nullptr) {
    fsnames.push_back(me->mnt_fsname);
    dirs.push_back(me->mnt_dir);
  }

  ASSERT_EQ(1, endmntent(fp));

  // Then again with getmntent_r(), checking they match.
  fp = setmntent("/proc/mounts", "r");
  ASSERT_TRUE(fp != nullptr);

  struct mntent entry;
  char buf[BUFSIZ];
  size_t i = 0;
  while (getmntent_r(fp, &entry, buf, sizeof(buf)) != nullptr) {
    ASSERT_EQ(fsnames[i], entry.mnt_fsname);
    ASSERT_EQ(dirs[i], entry.mnt_dir);
    i++;
  }

  ASSERT_EQ(1, endmntent(fp));

  // And just for good measure: we did see a /proc entry, right?
  auto it = std::find(fsnames.begin(), fsnames.end(), "proc");
  ASSERT_TRUE(it != fsnames.end());
  size_t proc_index = it - fsnames.begin();
  ASSERT_EQ("/proc", dirs[proc_index]);
}

TEST(mntent, hasmntopt) {
  // indices                  1  1
  // of keys:      0    5   9 1  4
  char mnt_opts[]{"aa=b,a=b,b,bb,c=d"};
  struct mntent ent;
  memset(&ent, 0, sizeof(ent));
  ent.mnt_opts = mnt_opts;

  EXPECT_EQ(mnt_opts, hasmntopt(&ent, "aa"));
  EXPECT_EQ(mnt_opts + 5, hasmntopt(&ent, "a"));
  EXPECT_EQ(mnt_opts + 9, hasmntopt(&ent, "b"));
  EXPECT_EQ(mnt_opts + 11, hasmntopt(&ent, "bb"));
  EXPECT_EQ(mnt_opts + 14, hasmntopt(&ent, "c"));
  EXPECT_EQ(nullptr, hasmntopt(&ent, "d"));
  EXPECT_EQ(nullptr, hasmntopt(&ent, "e"));
}