aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/singlejar/input_jar_scan_jartool_test.cc
blob: dd12f3e81db196b7af7200c5e78cd929407385cc (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
// Copyright 2016 The Bazel Authors. All rights reserved.
//
// 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.

/* Verify that InputJar can scan zip/jar files created by JDK's jar tool.  */

#include <stdarg.h>
#include <stdlib.h>

#include "src/tools/singlejar/input_jar_scan_entries_test.h"

#if !defined(JAR_TOOL_PATH)
#error "The path to jar tool has to be defined via -DJAR_TOOL_PATH="
#endif

class JartoolCreator {
 public:
  static void SetUpTestCase() {
    jar_path_ = realpath(JAR_TOOL_PATH, nullptr);
    if (!jar_path_) {
      // At least show what's available.
      system("ls -1R");
    }
    ASSERT_NE(nullptr, jar_path_);
  }

  static void TearDownTestCase() {
    free(jar_path_);
  }

  static int Jar(bool compress, const char *output_jar, ...) {
    std::string command(jar_path_);
    if (access(output_jar, F_OK) == 0) {
      command += compress ? " -uf " : " -u0f ";
    } else {
      command += compress ? " -cf " : " -c0f ";
    }
    command += output_jar;
    va_list paths;
    va_start(paths, output_jar);
    char *path;
    while ((path = va_arg(paths, char *))) {
      command += ' ';
      command += path;
    }
    return system(command.c_str());
  }
  static char * jar_path_;
};

char *JartoolCreator::jar_path_;

typedef testing::Types<JartoolCreator> Creators;
INSTANTIATE_TYPED_TEST_CASE_P(Jartool, InputJarScanEntries, Creators);