summaryrefslogtreecommitdiffstats
path: root/tools/localize/Perforce_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/localize/Perforce_test.cpp')
-rw-r--r--tools/localize/Perforce_test.cpp62
1 files changed, 62 insertions, 0 deletions
diff --git a/tools/localize/Perforce_test.cpp b/tools/localize/Perforce_test.cpp
new file mode 100644
index 0000000..142b20e
--- /dev/null
+++ b/tools/localize/Perforce_test.cpp
@@ -0,0 +1,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;
+}
+