summaryrefslogtreecommitdiffstats
path: root/tools/localize/Perforce_test.cpp
blob: 142b20e5aec16f71a58bf1a7f4443d32109e8ac9 (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
#include "Perforce.h"
#include <stdio.h>

static int
RunCommand_test()
{
    string result;
    int err = Perforce::RunCommand("p4 help csommands", &result, true);
    printf("err=%d result=[[%s]]\n", err, result.c_str());
    return 0;
}

static int
GetResourceFileNames_test()
{
    vector<string> results;
    vector<string> apps;
    apps.push_back("apps/common");
    apps.push_back("apps/Contacts");
    int err = Perforce::GetResourceFileNames("43019", "//device", apps, &results, true);
    if (err != 0) {
        return err;
    }
    if (results.size() != 2) {
        return 1;
    }
    if (results[0] != "//device/apps/common/res/values/strings.xml") {
        return 1;
    }
    if (results[1] != "//device/apps/Contacts/res/values/strings.xml") {
        return 1;
    }
    if (false) {
        for (size_t i=0; i<results.size(); i++) {
            printf("[%zd] '%s'\n", i, results[i].c_str());
        }
    }
    return 0;
}

static int
GetFile_test()
{
    string result;
    int err = Perforce::GetFile("//device/Makefile", "296", &result, true);
    printf("err=%d result=[[%s]]\n", err, result.c_str());
    return 0;
}

int
Perforce_test()
{
    bool all = false;
    int err = 0;

    if (all) err |= RunCommand_test();
    if (all) err |= GetResourceFileNames_test();
    if (all) err |= GetFile_test();

    return err;
}