summaryrefslogtreecommitdiff
path: root/src/mongo/util/processinfo_test.cpp
blob: 5d63c0c75184a90d3ff450cdd67780101284b72c (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
/**
 *    Copyright (C) 2012 10gen Inc.
 *
 *    This program is free software: you can redistribute it and/or  modify
 *    it under the terms of the GNU Affero General Public License, version 3,
 *    as published by the Free Software Foundation.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU Affero General Public License for more details.
 *
 *    You should have received a copy of the GNU Affero General Public License
 *    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "mongo/platform/basic.h"

#include <vector>

#include "mongo/util/processinfo.h"
#include "mongo/unittest/unittest.h"

using mongo::ProcessInfo;

namespace mongo_test {
    TEST(ProcessInfo, SysInfoIsInitialized) {
        ProcessInfo processInfo;
        if (processInfo.supported()) {
            ASSERT_FALSE(processInfo.getOsType().empty());
        }
    }

    TEST(ProcessInfo, NonZeroPageSize) {
        if (ProcessInfo::blockCheckSupported()) {
            ASSERT_GREATER_THAN(ProcessInfo::getPageSize(), 0u);
        }
    }

    const size_t PAGES = 10;

    TEST(ProcessInfo, BlockInMemoryDoesNotThrowIfSupported) {
        if (ProcessInfo::blockCheckSupported()) {
            static char ptr[4096 * PAGES] = "This needs data to not be in .bss";
            ProcessInfo::blockInMemory(ptr + ProcessInfo::getPageSize() * 2);
        }
    }

    TEST(ProcessInfo, PagesInMemoryIsSensible) {
        if (ProcessInfo::blockCheckSupported()) {
            static char ptr[4096 * PAGES] = "This needs data to not be in .bss";
            ptr[(ProcessInfo::getPageSize() * 0) + 1] = 'a';
            ptr[(ProcessInfo::getPageSize() * 8) + 1] = 'a';
            std::vector<char> result;
            ASSERT_TRUE(ProcessInfo::pagesInMemory(const_cast<char*>(ptr), PAGES, &result));
            ASSERT_TRUE(result[0]);
            ASSERT_TRUE(result[8]);
        }
    }
}