aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java_tools/singlejar/javatests/com/google/devtools/build/singlejar/SingleJarTest.java
blob: 34c4cc0bf5a25de75da7dc8aee9845c100a9ed7a (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
// Copyright 2015 Google Inc. 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.

package com.google.devtools.build.singlejar;

import static com.google.common.truth.Truth.assertThat;
import static java.nio.charset.StandardCharsets.UTF_8;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableList;
import com.google.devtools.build.singlejar.FakeZipFile.ByteValidator;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.jar.JarFile;

/**
 * Unit tests for {@link SingleJar}.
 */
@RunWith(JUnit4.class)
public class SingleJarTest {

  public static final byte[] EXTRA_FOR_META_INF = new byte[] {(byte) 0xFE, (byte) 0xCA, 0x00, 0x00};

  static final Joiner LINE_JOINER = Joiner.on("\r\n");
  static final Joiner LINEFEED_JOINER = Joiner.on("\n");

  static enum EntryMode {
    DONT_CARE, EXPECT_DEFLATE, EXPECT_STORED;
  }

  public static final class BuildInfoValidator implements ByteValidator {
    private final List<String> buildInfoLines;

    public BuildInfoValidator(List<String> buildInfoLines) {
      this.buildInfoLines = buildInfoLines;
    }

    @Override
    public void validate(byte[] content) {
      String actualBuildInfo = new String(content, StandardCharsets.UTF_8);
      List<String> expectedBuildInfos = new ArrayList<>();
      for (String line : buildInfoLines) { // the character : is escaped
        expectedBuildInfos.add(line.replace(":", "\\:"));
      }
      Collections.sort(expectedBuildInfos);
      String[] actualBuildInfos = actualBuildInfo.split("\n");
      Arrays.sort(actualBuildInfos);
      assertEquals(LINEFEED_JOINER.join(expectedBuildInfos),
          LINEFEED_JOINER.join(actualBuildInfos));
    }

  }

  // Manifest file line ordering is dependent of the ordering in HashMap (Attributes class) so
  // we do a sorted comparison for Manifest.
  public static final class ManifestValidator implements ByteValidator {
    private final List<String> manifestLines;

    public ManifestValidator(List<String> manifestLines) {
      this.manifestLines = new ArrayList<>(manifestLines);
      Collections.sort(this.manifestLines);
    }

    public ManifestValidator(String... manifestLines) {
      this.manifestLines = Arrays.asList(manifestLines);
      Collections.sort(this.manifestLines);
    }

    @Override
    public void validate(byte[] content) {
      String actualManifest = new String(content, StandardCharsets.UTF_8);
      String[] actualManifestLines = actualManifest.trim().split("\r\n");
      Arrays.sort(actualManifestLines);
      assertEquals(LINEFEED_JOINER.join(manifestLines), LINEFEED_JOINER.join(actualManifestLines));
    }

  }

  private BuildInfoValidator redactedBuildData(String outputJar) {
    return new BuildInfoValidator(ImmutableList.of("build.target=" + outputJar));
  }

  private BuildInfoValidator redactedBuildData(String outputJar, String mainClass) {
    return new BuildInfoValidator(
        ImmutableList.of("build.target=" + outputJar, "main.class=" + mainClass));
  }

  static List<String> getBuildInfo() {
    return ImmutableList.of("build.build_id=11111-222-33333",
        "build.version=12659499",
        "build.location=user@machine.domain.com:/home/user/source",
        "build.target=output.jar",
        "build.time=Fri Jan 2 02:17:36 1970 (123456)",
        "build.timestamp=Fri Jan 2 02:17:36 1970 (123456)",
        "build.timestamp.as.int=123456"
                            );
  }

  private byte[] sampleZip() {
    ZipFactory factory = new ZipFactory();
    factory.addFile("hello.txt", "Hello World!");
    return factory.toByteArray();
  }

  private byte[] sampleUncompressedZip() {
    ZipFactory factory = new ZipFactory();
    factory.addFile("hello.txt", "Hello World!", false);
    return factory.toByteArray();
  }

  private byte[] sampleZipWithSF() {
    ZipFactory factory = new ZipFactory();
    factory.addFile("hello.SF", "Hello World!");
    return factory.toByteArray();
  }

  private byte[] sampleZipWithSubdirs() {
    ZipFactory factory = new ZipFactory();
    factory.addFile("dir1/file1", "contents11");
    factory.addFile("dir1/file2", "contents12");
    factory.addFile("dir2/file1", "contents21");
    factory.addFile("dir3/file1", "contents31");
    return factory.toByteArray();
  }

  private void assertStripFirstLine(String expected, String testCase) {
    byte[] result = SingleJar.stripFirstLine(testCase.getBytes(StandardCharsets.UTF_8));
    assertEquals(expected, new String(result, UTF_8));
  }

  @Test
  public void testStripFirstLine() {
    assertStripFirstLine("", "");
    assertStripFirstLine("", "no linefeed");
    assertStripFirstLine(LINEFEED_JOINER.join("toto", "titi"),
        LINEFEED_JOINER.join("# timestamp comment", "toto", "titi"));
    assertStripFirstLine(LINE_JOINER.join("toto", "titi"),
        LINE_JOINER.join("# timestamp comment", "toto", "titi"));
  }

  @Test
  public void testEmptyJar() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"))
        .addEntry("build-data.properties", redactedBuildData("output.jar"));
    expectedResult.assertSame(mockFs.toByteArray());
  }

  // Test that two identical calls at different time actually returns identical results
  @Test
  public void testDeterministicJar() throws IOException, InterruptedException {
    MockSimpleFileSystem mockFs1 = new MockSimpleFileSystem("output.jar");
    SingleJar singleJar1 = new SingleJar(mockFs1);
    singleJar1.run(ImmutableList.of("--output", "output.jar", "--extra_build_info", "toto=titi",
        "--normalize"));
    Thread.sleep(1000); // ensure that we are not at the same seconds

    MockSimpleFileSystem mockFs2 = new MockSimpleFileSystem("output.jar");
    SingleJar singleJar2 = new SingleJar(mockFs2);
    singleJar2.run(ImmutableList.of("--output", "output.jar", "--extra_build_info", "toto=titi",
        "--normalize"));

    FakeZipFile.assertSame(mockFs1.toByteArray(), mockFs2.toByteArray());
  }

  @Test
  public void testExtraManifestContent() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--deploy_manifest_lines",
        "Main-Class: SomeClass", "X-Other: Duh"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar",
            "Main-Class: SomeClass",
            "X-Other: Duh"))
        .addEntry("build-data.properties", redactedBuildData("output.jar"));
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testMultipleExtraManifestContent() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--deploy_manifest_lines", "X-Other: Duh",
        "--output", "output.jar",
        "--deploy_manifest_lines", "Main-Class: SomeClass"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar",
            "Main-Class: SomeClass",
            "X-Other: Duh"))
        .addEntry("build-data.properties", redactedBuildData("output.jar"));
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testMainClass() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--main_class", "SomeClass"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar",
            "Main-Class: SomeClass"))
        .addEntry("build-data.properties", redactedBuildData("output.jar", "SomeClass"));
    expectedResult.assertSame(mockFs.toByteArray());
  }

  // These four tests test all combinations of compressed/uncompressed input and output.
  @Test
  public void testSimpleZip() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("test.jar", sampleZip());
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--sources", "test.jar"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF, false)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"), false)
        .addEntry("build-data.properties", redactedBuildData("output.jar"), false)
        .addEntry("hello.txt", "Hello World!", false);
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testSimpleZipExpectCompressedOutput() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("test.jar", sampleZip());
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--sources", "test.jar",
        "--compression"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF, false)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"), true)
        .addEntry("build-data.properties", redactedBuildData("output.jar"), true)
        .addEntry("hello.txt", "Hello World!", true);
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testSimpleUncompressedZip() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("test.jar", sampleUncompressedZip());
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--sources", "test.jar"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF, false)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(ImmutableList.of(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar")), false)
        .addEntry("build-data.properties", redactedBuildData("output.jar"), false)
        .addEntry("hello.txt", "Hello World!", false);
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testSimpleUncompressedZipExpectCompressedOutput() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("test.jar", sampleUncompressedZip());
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--sources", "test.jar",
        "--compression"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF, false)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"), true)
        .addEntry("build-data.properties", redactedBuildData("output.jar"), true)
        .addEntry("hello.txt", "Hello World!", true);
    expectedResult.assertSame(mockFs.toByteArray());
  }

  // Integration test for option file expansion.
  @Test
  public void testOptionFile() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("input.jar", sampleZip());
    mockFs.addFile("options", "--output output.jar --sources input.jar");
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("@options"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"))
        .addEntry("build-data.properties", redactedBuildData("output.jar"))
        .addEntry("hello.txt", "Hello World!");
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testSkipsSignatureFiles() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("input.jar", sampleZipWithSF());
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--sources", "input.jar"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"))
        .addEntry("build-data.properties", redactedBuildData("output.jar"));
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testSkipsUsingInputPrefixes() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("input.jar", sampleZipWithSubdirs());
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--sources",
        "input.jar", "--include_prefixes", "dir1", "dir2"));

    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"))
        .addEntry("build-data.properties", redactedBuildData("output.jar"))
        .addEntry("dir1/file1", "contents11")
        .addEntry("dir1/file2", "contents12")
        .addEntry("dir2/file1", "contents21");

    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testSkipsUsingMultipleInputPrefixes() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("input.jar", sampleZipWithSubdirs());
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--include_prefixes", "dir2",
        "--sources", "input.jar", "--include_prefixes", "dir1"));

    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"))
        .addEntry("build-data.properties", redactedBuildData("output.jar"))
        .addEntry("dir1/file1", "contents11")
        .addEntry("dir1/file2", "contents12")
        .addEntry("dir2/file1", "contents21");

    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testNormalize() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("input.jar", sampleZip());
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--sources", "input.jar",
        "--normalize"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF, false)
        .addEntry(JarFile.MANIFEST_NAME, ZipCombiner.DOS_EPOCH, new ManifestValidator(
            "Manifest-Version: 1.0", "Created-By: blaze-singlejar"), false)
        .addEntry("build-data.properties", ZipCombiner.DOS_EPOCH,
            redactedBuildData("output.jar"), false)
        .addEntry("hello.txt", ZipCombiner.DOS_EPOCH, "Hello World!", false);
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testNormalizeAndCompress() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("input.jar", sampleZip());
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--sources", "input.jar",
        "--normalize", "--compression"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF, false)
        .addEntry(JarFile.MANIFEST_NAME, ZipCombiner.DOS_EPOCH, new ManifestValidator(
            "Manifest-Version: 1.0", "Created-By: blaze-singlejar"), true)
        .addEntry("build-data.properties", ZipCombiner.DOS_EPOCH,
             redactedBuildData("output.jar"), true)
        .addEntry("hello.txt", ZipCombiner.DOS_EPOCH, "Hello World!", true);
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testAddBuildInfoProperties() throws IOException {
    List<String> buildInfo = getBuildInfo();
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF, false)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
                "Manifest-Version: 1.0", "Created-By: blaze-singlejar"), false)
        .addEntry("build-data.properties", new BuildInfoValidator(buildInfo),
            false);

    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    SingleJar singleJar = new SingleJar(mockFs);
    List<String> args = new ArrayList<>();
    args.add("--output");
    args.add("output.jar");
    args.addAll(infoPropertyArguments(buildInfo));
    singleJar.run(args);
    expectedResult.assertSame(mockFs.toByteArray());
  }

  private static List<String> infoPropertyArguments(List<String> buildInfoLines) {
    List<String> args = new ArrayList<>();
    for (String s : buildInfoLines) {
      if (!s.isEmpty()) {
        args.add("--extra_build_info");
        args.add(s);
      }
    }
    return args;
  }

  @Test
  public void testAddBuildInfoPropertiesFile() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    SingleJar singleJar = new SingleJar(mockFs);
    doTestAddBuildInfoPropertiesFile(mockFs, "output.jar", singleJar);
  }

  public static void doTestAddBuildInfoPropertiesFile(MockSimpleFileSystem mockFs, String target,
      SingleJar singleJar) throws IOException {
    List<String> buildInfo = getBuildInfo();
    mockFs.addFile("my.properties", makePropertyFileFromBuildInfo(buildInfo));
    singleJar.run(ImmutableList.of("--output", target, "--build_info_file", "my.properties"));

    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF, false)
        .addEntry(JarFile.MANIFEST_NAME,
            new ManifestValidator("Manifest-Version: 1.0", "Created-By: blaze-singlejar"), false)
        .addEntry("build-data.properties", new BuildInfoValidator(buildInfo),
            false);
    expectedResult.assertSame(mockFs.toByteArray());
  }

  private static String makePropertyFileFromBuildInfo(List<String> buildInfo) {
    return LINEFEED_JOINER.join(buildInfo).replace(":", "\\:");
  }

  @Test
  public void testAddBuildInfoPropertiesFiles() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    SingleJar singleJar = new SingleJar(mockFs);
    doTestAddBuildInfoPropertiesFiles(mockFs, "output.jar", singleJar);
  }

  public static void doTestAddBuildInfoPropertiesFiles(MockSimpleFileSystem mockFs, String target,
      SingleJar singleJar) throws IOException {
    List<String> buildInfo = getBuildInfo();

    mockFs.addFile("my1.properties", makePropertyFileFromBuildInfo(buildInfo.subList(0, 4)));
    mockFs.addFile("my2.properties",
        makePropertyFileFromBuildInfo(buildInfo.subList(4, buildInfo.size())));
    singleJar.run(ImmutableList.of("--output", target,
        "--build_info_file", "my1.properties",
        "--build_info_file", "my2.properties"));

    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF, false)
        .addEntry(JarFile.MANIFEST_NAME,
            new ManifestValidator("Manifest-Version: 1.0", "Created-By: blaze-singlejar"), false)
        .addEntry("build-data.properties", new BuildInfoValidator(buildInfo),
            false);
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testAddBuildInfoPropertiesAndFiles() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    SingleJar singleJar = new SingleJar(mockFs);
    doTestAddBuildInfoPropertiesAndFiles(mockFs, "output.jar", singleJar);
  }

  public static void doTestAddBuildInfoPropertiesAndFiles(MockSimpleFileSystem mockFs,
      String target, SingleJar singleJar) throws IOException {
    List<String> buildInfo = getBuildInfo();

    mockFs.addFile("my1.properties", makePropertyFileFromBuildInfo(buildInfo.subList(0, 4)));
    mockFs.addFile("my2.properties", makePropertyFileFromBuildInfo(
        buildInfo.subList(4, buildInfo.size())));
    List<String> args = ImmutableList.<String>builder()
        .add("--output").add(target)
        .add("--build_info_file").add("my1.properties")
        .add("--build_info_file").add("my2.properties")
        .addAll(infoPropertyArguments(buildInfo.subList(4, buildInfo.size())))
        .build();

    singleJar.run(args);
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF, false)
        .addEntry(JarFile.MANIFEST_NAME,
            new ManifestValidator("Manifest-Version: 1.0", "Created-By: blaze-singlejar"), false)
        .addEntry("build-data.properties", new BuildInfoValidator(buildInfo),
            false);
    expectedResult.assertSame(mockFs.toByteArray());
  }


  @Test
  public void testExcludeBuildData() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    SingleJar singleJar = new SingleJar(mockFs);
    doTestExcludeBuildData(mockFs, "output.jar", singleJar);
  }

  public static void doTestExcludeBuildData(MockSimpleFileSystem mockFs, String target,
      SingleJar singleJar) throws IOException {
    singleJar.run(ImmutableList.of("--output", target, "--exclude_build_data"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"));
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testResourceMapping() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("a/b/c", "Test");
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--exclude_build_data",
        "--resources", "a/b/c:c/b/a"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"))
        .addEntry("c/b/a", "Test");
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testResourceMappingIdentity() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("a/b/c", "Test");
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--exclude_build_data",
        "--resources", "a/b/c"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"))
        .addEntry("a/b/c", "Test");
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testResourceMappingDuplicateError() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("a/b/c", "Test");
    SingleJar singleJar = new SingleJar(mockFs);
    try {
      singleJar.run(ImmutableList.of("--output", "output.jar", "--exclude_build_data",
          "--resources", "a/b/c", "a/b/c"));
      fail();
    } catch (IllegalArgumentException e) {
      assertThat(e.getMessage()).contains("already contains a file named 'a/b/c'.");
    }
  }

  @Test
  public void testResourceMappingDuplicateWarning() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    mockFs.addFile("a/b/c", "Test");
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar", "--exclude_build_data",
        "--warn_duplicate_resources", "--resources", "a/b/c", "a/b/c"));
    FakeZipFile expectedResult = new FakeZipFile()
        .addEntry("META-INF/", EXTRA_FOR_META_INF)
        .addEntry(JarFile.MANIFEST_NAME, new ManifestValidator(
            "Manifest-Version: 1.0",
            "Created-By: blaze-singlejar"))
        .addEntry("a/b/c", "Test");
    expectedResult.assertSame(mockFs.toByteArray());
  }

  @Test
  public void testCanAddPreamble() throws IOException {
    MockSimpleFileSystem mockFs = new MockSimpleFileSystem("output.jar");
    String preamble = "WeThePeople";
    mockFs.addFile(preamble, preamble.getBytes(UTF_8));
    SingleJar singleJar = new SingleJar(mockFs);
    singleJar.run(ImmutableList.of("--output", "output.jar",
        "--java_launcher", preamble,
        "--main_class", "SomeClass"));
    FakeZipFile expectedResult =
        new FakeZipFile()
            .addPreamble(preamble.getBytes(UTF_8))
            .addEntry("META-INF/", EXTRA_FOR_META_INF)
            .addEntry(
                JarFile.MANIFEST_NAME,
                new ManifestValidator("Manifest-Version: 1.0", "Created-By: blaze-singlejar",
                    "Main-Class: SomeClass"))
            .addEntry("build-data.properties", redactedBuildData("output.jar", "SomeClass"));
    expectedResult.assertSame(mockFs.toByteArray());
  }
}