aboutsummaryrefslogtreecommitdiff
path: root/drill-yarn/src/test/java/org/apache/drill/yarn/scripts/TestScripts.java
blob: 5f6b5bb0056a6ff897178cda9a65b3d82768ab07 (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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.drill.yarn.scripts;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.util.HashMap;
import java.util.Map;

import org.apache.drill.yarn.scripts.ScriptUtils.DrillbitRun;
import org.apache.drill.yarn.scripts.ScriptUtils.RunResult;
import org.apache.drill.yarn.scripts.ScriptUtils.ScriptRunner;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;

/**
 * Unit tests to test the many ways that the Drill shell scripts can run.
 * Since it would be difficult to test options using the actual Drillbit, the
 * scripts make use of a special test fixture in runbit: the ability to pass
 * a "wrapper" script to run in place of the Drillit. That script probes stderr,
 * stdout and log files, and writes its arguments (which is the Drillbit launch
 * command) to a file. As a result, we can capture this output and analyze it
 * to ensure we are passing the right arguments to the Drillbit, and that output
 * is going to the right destinations.
 */

// Turned of by default: works only in a developer setup
@Ignore
public class TestScripts {
  static ScriptUtils context;

  @BeforeClass
  public static void initialSetup() throws IOException {
    context = ScriptUtils.instance();
    context.initialSetup();
  }

  /**
   * Test the simplest case: use the $DRILL_HOME/conf directory and default log
   * location. Non-existent drill-env.sh and drill-config.sh files. Everything
   * is at its Drill-provided defaults. Then, try overriding each user-settable
   * environment variable in the environment (which simulates what YARN might
   * do.)
   */

  @Test
  public void testStockCombined() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    // No drill-env.sh, no distrib-env.sh

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .run();
      assertEquals(0, result.returnCode);
      result.validateJava();
      result.validateStockArgs();
      result.validateClassPath(ScriptUtils.stdCp);
      result.validateStdOut();
      result.validateStdErr();
      result.validateDrillLog();
    }

    // As above, but pass an argument.

    {
      String propArg = "-Dproperty=value";
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withArg(propArg).run();
      assertEquals(0, result.returnCode);
      result.validateStdOut();
      result.validateArg(propArg);
    }

    // Custom Java opts to achieve the same result

    {
      String propArg = "-Dproperty=value";
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILL_JAVA_OPTS", propArg).run();
      assertEquals(0, result.returnCode);
      result.validateStockArgs(); // Should not lose standard JVM args
      result.validateStdOut();
      result.validateArg(propArg);
    }

    // Custom Drillbit Java Opts to achieve the same result

    {
      String propArg = "-Dproperty2=value2";
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILLBIT_JAVA_OPTS", propArg).run();
      assertEquals(0, result.returnCode);
      result.validateStockArgs(); // Should not lose standard JVM args
      result.validateStdOut();
      result.validateArg(propArg);
    }

    // Both sets of options

    {
      String propArg = "-Dproperty=value";
      String propArg2 = "-Dproperty2=value2";
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILL_JAVA_OPTS", propArg)
          .addEnv("DRILLBIT_JAVA_OPTS", propArg2).run();
      assertEquals(0, result.returnCode);
      result.validateArgs(new String[] { propArg, propArg2 });
    }

    // Custom heap memory

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILL_HEAP", "5G").run();
      result.validateArgs(new String[] { "-Xms5G", "-Xmx5G" });
    }

    // Custom direct memory

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILL_MAX_DIRECT_MEMORY", "7G").run();
      result.validateArg("-XX:MaxDirectMemorySize=7G");
    }

    // Enable GC logging

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("SERVER_LOG_GC", "1").run();
      String logTail = context.testLogDir.getName() + "/drillbit.gc";
      result.validateArgRegex("-Xloggc:.*/" + logTail);
    }

    // Max Perm Size

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILLBIT_MAX_PERM", "600M").run();
      result.validateArg("-XX:MaxPermSize=600M");
    }

    // Code cache size

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILLBIT_CODE_CACHE_SIZE", "2G").run();
      result.validateArg("-XX:ReservedCodeCacheSize=2G");
    }
  }

  /**
   * Use the "stock" setup, but add each custom bit of the class path to ensure
   * it is passed to the Drillbit.
   *
   * @throws IOException
   */

  @Test
  public void testClassPath() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    File extrasDir = context.createDir(new File(context.testDir, "extras"));
    File hadoopJar = context.makeDummyJar(extrasDir, "hadoop");
    File hbaseJar = context.makeDummyJar(extrasDir, "hbase");
    File prefixJar = context.makeDummyJar(extrasDir, "prefix");
    File cpJar = context.makeDummyJar(extrasDir, "cp");
    File extnJar = context.makeDummyJar(extrasDir, "extn");
    File toolsJar = context.makeDummyJar(extrasDir, "tools");

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILL_CLASSPATH_PREFIX", prefixJar.getAbsolutePath()).run();
      result.validateClassPath(prefixJar.getAbsolutePath());
    }

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILL_TOOL_CP", toolsJar.getAbsolutePath()).run();
      result.validateClassPath(toolsJar.getAbsolutePath());
    }

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("HADOOP_CLASSPATH", hadoopJar.getAbsolutePath()).run();
      result.validateClassPath(hadoopJar.getAbsolutePath());
    }

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("HBASE_CLASSPATH", hbaseJar.getAbsolutePath()).run();
      result.validateClassPath(hbaseJar.getAbsolutePath());
    }

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("EXTN_CLASSPATH", extnJar.getAbsolutePath()).run();
      result.validateClassPath(extnJar.getAbsolutePath());
    }

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILL_CLASSPATH", cpJar.getAbsolutePath()).run();
      result.validateClassPath(cpJar.getAbsolutePath());
    }

    // Site jars not on path if not created

    File siteJars = new File(siteDir, "jars");
    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN).run();
      assertFalse(result.classPathContains(siteJars.getAbsolutePath()));
    }

    // Site/jars on path if exists

    context.createDir(siteJars);
    context.makeDummyJar(siteJars, "site");

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN).run();
      result.validateClassPath(siteJars.getAbsolutePath() + "/*");
    }
  }

  /**
   * Create a custom log folder location.
   */

  @Test
  public void testLogDir() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);
    File logsDir = context.createDir(new File(context.testDir, "logs"));
    context.removeDir(new File(context.testDrillHome, "log"));

    {
      String logPath = logsDir.getAbsolutePath();
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILL_LOG_DIR", logPath).withLogDir(logsDir).run();
      assertEquals(0, result.returnCode);
      result.validateArgs(
          new String[] { "-Dlog.path=" + logPath + "/drillbit.log",
              "-Dlog.query.path=" + logPath + "/drillbit_queries.json", });
      result.validateStdOut();
      result.validateStdErr();
      result.validateDrillLog();
    }

  }

  /**
   * Create a custom Java lib path. This uses the new DRILL_JAVA_LIB_PATH
   * variable.
   */

  @Test
  public void testLibPath() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);
    File logsDir = context.createDir(new File(context.testDir, "logs"));
    context.removeDir(new File(context.testDrillHome, "log"));

    {
      String logPath = logsDir.getAbsolutePath();
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILL_LOG_DIR", logPath).withLogDir(logsDir).run();
      assertEquals(0, result.returnCode);
      result.validateArgs(
          new String[] { "-Dlog.path=" + logPath + "/drillbit.log",
              "-Dlog.query.path=" + logPath + "/drillbit_queries.json", });
      result.validateStdOut();
      result.validateStdErr();
      result.validateDrillLog();
    }

  }

  /**
   * Try setting custom environment variable values in drill-env.sh in the
   * $DRILL_HOME/conf location.
   */

  @Test
  public void testDrillEnv() throws IOException {
    doEnvFileTest("drill-env.sh");
  }

  /**
   * Repeat the above test using distrib-env.sh in the $DRILL_HOME/conf
   * location.
   */

  @Test
  public void testDistribEnv() throws IOException {
    doEnvFileTest("distrib-env.sh");
  }

  /**
   * Implementation of the drill-env.sh and distrib-env.sh tests.
   */

  private void doEnvFileTest(String fileName) throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    /**
     * Set all properties in the env file.
     */

    Map<String, String> drillEnv = new HashMap<>();
    String propArg = "-Dproperty=value";
    drillEnv.put("DRILL_JAVA_OPTS", propArg);
    drillEnv.put("DRILL_HEAP", "5G");
    drillEnv.put("DRILL_MAX_DIRECT_MEMORY", "7G");
    drillEnv.put("SERVER_LOG_GC", "1");
    drillEnv.put("DRILLBIT_MAX_PERM", "600M");
    drillEnv.put("DRILLBIT_CODE_CACHE_SIZE", "2G");
    context.createEnvFile(new File(siteDir, fileName), drillEnv);

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN).run();
      assertEquals(0, result.returnCode);

      String expectedArgs[] = {
          propArg,
          "-Xms5G", "-Xmx5G",
          "-XX:MaxDirectMemorySize=7G",
          "-XX:ReservedCodeCacheSize=2G",
          "-XX:MaxPermSize=600M"
      };

      result.validateArgs(expectedArgs);
      String logTail = context.testLogDir.getName() + "/drillbit.gc";
      result.validateArgRegex("-Xloggc:.*/" + logTail);
    }

    // Change some drill-env.sh options in the environment.
    // The generated drill-env.sh should allow overrides.
    // (The generated form is the form that customers should use.)

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("SERVER_LOG_GC", "0")
          .addEnv("DRILL_MAX_DIRECT_MEMORY", "9G")
          .run();
      assertEquals(0, result.returnCode);
      result.validateArg("-XX:MaxDirectMemorySize=9G");
      result.validateArg("-XX:MaxPermSize=600M");
      String logTail = context.testDrillHome.getName() + "/log/drillbit.gc";
      assertFalse(result.containsArgRegex("-Xloggc:.*/" + logTail));
    }
  }

  /**
   * Test that drill-env.sh overrides distrib-env.sh, and that the environment
   * overrides both. Assumes the basics were tested above.
   *
   * @throws IOException
   */

  @Test
  public void testDrillAndDistribEnv() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    Map<String, String> distribEnv = new HashMap<>();
    distribEnv.put("DRILL_HEAP", "5G");
    distribEnv.put("DRILL_MAX_DIRECT_MEMORY", "7G");
    distribEnv.put("DRILLBIT_MAX_PERM", "600M");
    context.createEnvFile(new File(siteDir, "distrib-env.sh"), distribEnv);

    Map<String, String> drillEnv = new HashMap<>();
    drillEnv.put("DRILL_HEAP", "6G");
    drillEnv.put("DRILL_MAX_DIRECT_MEMORY", "9G");
    context.createEnvFile(new File(siteDir, "drill-env.sh"), drillEnv);

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN).run();
      assertEquals(0, result.returnCode);
      String expectedArgs[] = {
          "-Xms6G", "-Xmx6G",
          "-XX:MaxDirectMemorySize=9G",
          "-XX:MaxPermSize=600M",
          "-XX:ReservedCodeCacheSize=1G" // Default
      };

      result.validateArgs(expectedArgs);
    }

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILL_MAX_DIRECT_MEMORY", "5G").run();
      assertEquals(0, result.returnCode);
      String expectedArgs[] = {
          "-Xms6G", "-Xmx6G",
          "-XX:MaxDirectMemorySize=5G",
          "-XX:MaxPermSize=600M",
          "-XX:ReservedCodeCacheSize=1G" // Default
      };

      result.validateArgs(expectedArgs);
    }
  }

  @Test
  public void testBadSiteDir() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.removeDir(siteDir);

    // Directory does not exist.

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withSite(siteDir).run();
      assertEquals(1, result.returnCode);
      assertTrue(result.stderr.contains("Config dir does not exist"));
    }

    // Not a directory

    context.writeFile(siteDir, "dummy");
    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withSite(siteDir).run();
      assertEquals(1, result.returnCode);
      assertTrue(result.stderr.contains("Config dir does not exist"));
    }

    // Directory exists, but drill-override.conf does not

    siteDir.delete();
    context.createDir(siteDir);
    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withSite(siteDir).run();
      assertEquals(1, result.returnCode);
      assertTrue(result.stderr.contains("Drill config file missing"));
    }
  }

  /**
   * Move configuration to a site folder out of $DRILL_HOME/conf. The site
   * folder can contain code (which is why we call it "site" and not "config".)
   * The site directory can be passed to the Drillbit in several ways.
   *
   * @throws IOException
   */

  @Test
  public void testSiteDir() throws IOException {
    context.createMockDistrib();
    File confDir = new File(context.testDrillHome, "conf");
    context.createDir(confDir);
    File siteDir = new File(context.testDir, "site");
    context.createMockConf(siteDir);

    // Dummy drill-env.sh to simulate the shipped "example" file.

    context.writeFile(new File(confDir, "drill-env.sh"),
        "#!/usr/bin/env bash\n" + "# Example file");
    File siteJars = new File(siteDir, "jars");

    Map<String, String> distribEnv = new HashMap<>();
    distribEnv.put("DRILL_HEAP", "5G");
    distribEnv.put("DRILL_MAX_DIRECT_MEMORY", "7G");
    distribEnv.put("DRILLBIT_MAX_PERM", "600M");
    context.createEnvFile(new File(confDir, "distrib-env.sh"), distribEnv);

    Map<String, String> drillEnv = new HashMap<>();
    drillEnv.put("DRILL_HEAP", "6G");
    drillEnv.put("DRILL_MAX_DIRECT_MEMORY", "9G");
    context.createEnvFile(new File(siteDir, "drill-env.sh"), drillEnv);

    String expectedArgs[] = {
        "-Xms6G", "-Xmx6G",
        "-XX:MaxDirectMemorySize=9G",
        "-XX:MaxPermSize=600M",
        "-XX:ReservedCodeCacheSize=1G" // Default
    };

    // Site set using argument

    {
      // Use --config explicitly

      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withArg("--config")
          .withArg(siteDir.getAbsolutePath())
          .run();
      assertEquals(0, result.returnCode);
      result.validateArgs(expectedArgs);
      result.validateClassPath(siteDir.getAbsolutePath());
    }

    {
      RunResult result = new DrillbitRun()
          .withArg("--config")
          .withArg(siteDir.getAbsolutePath())
          .withArg(DrillbitRun.DRILLBIT_RUN)
          .run();
      assertEquals(0, result.returnCode);
      result.validateArgs(expectedArgs);
    }

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withSite(siteDir)
          .run();
      assertEquals(0, result.returnCode);
      result.validateArgs(expectedArgs);
    }

    // Site argument and argument to Drillbit

    {
      String propArg = "-Dproperty=value";
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withSite(siteDir)
          .withArg(propArg)
          .run( );
      assertEquals(0, result.returnCode);
      result.validateArgs(expectedArgs);
      result.validateArg(propArg);
    }

    // Set as an environment variable

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .addEnv("DRILL_CONF_DIR",siteDir.getAbsolutePath())
          .run();
      assertEquals(0, result.returnCode);
      result.validateArgs(expectedArgs);
    }

    // Site jars not on path if not created

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withSite(siteDir)
          .run();
      assertFalse(result.classPathContains(siteJars.getAbsolutePath()));
    }

    // Site/jars on path if exists

    context.createDir(siteJars);
    context.makeDummyJar(siteJars, "site");

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withSite(siteDir)
          .run();
      assertTrue(result.classPathContains(siteJars.getAbsolutePath() + "/*"));
    }
  }

  /**
   * Test the Java library path. Three sources:
   * <ol>
   * <li>DRILL_JAVA_LIB_PATH Set in drill-env.sh</li>
   * <li>DOY_JAVA_LIB_PATH passed in from an env. var.</li>
   * <li>$DRILL_SITE/lib, if it exists.</li>
   * </ol>
   *
   * @throws IOException
   */

  @Test
  public void testJavaLibDir() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    // Stock run: no lib dir.

    String prefix = "-Djava.library.path=";
    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .run();
      assertFalse(result.containsArgRegex(prefix + ".*"));
      assertNull(result.libPath);
    }

    // Old-style argument in DRILL_JAVA_OPTS

    {
      Map<String, String> env = new HashMap<>();
      env.put("DRILL_JAVA_OPTS", prefix + "/foo/bar:/foo/mumble");
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withEnvironment(env)
          .run();
      assertTrue(result.containsArgRegex(prefix + ".*"));
      assertNotNull(result.libPath);
      assertEquals(2, result.libPath.length);
      assertEquals("/foo/bar", result.libPath[0]);
      assertEquals("/foo/mumble", result.libPath[1]);
    }

    // New-style argument in DRILL_JAVA_LIB_PATH

    {
      Map<String, String> env = new HashMap<>();
      env.put("DRILL_JAVA_LIB_PATH", "/foo/bar:/foo/mumble");
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withEnvironment(env)
          .run();
      assertTrue(result.containsArgRegex(prefix + ".*"));
      assertNotNull(result.libPath);
      assertEquals(2, result.libPath.length);
      assertEquals("/foo/bar", result.libPath[0]);
      assertEquals("/foo/mumble", result.libPath[1]);
    }

    // YARN argument in DOY_JAVA_LIB_PATH

    {
      Map<String, String> env = new HashMap<>();
      env.put("DOY_JAVA_LIB_PATH", "/foo/bar:/foo/mumble");
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withEnvironment(env)
          .run();
      assertTrue(result.containsArgRegex(prefix + ".*"));
      assertNotNull(result.libPath);
      assertEquals(2, result.libPath.length);
      assertEquals("/foo/bar", result.libPath[0]);
      assertEquals("/foo/mumble", result.libPath[1]);
    }

    // Both DRILL_JAVA_LIB_PATH and DOY_JAVA_LIB_PATH

    {
      Map<String, String> env = new HashMap<>();
      env.put("DRILL_JAVA_LIB_PATH", "/foo/bar:/foo/mumble");
      env.put("DOY_JAVA_LIB_PATH", "/doy/bar:/doy/mumble");
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withEnvironment(env)
          .run();
      assertTrue(result.containsArgRegex(prefix + ".*"));
      assertNotNull(result.libPath);
      assertEquals(4, result.libPath.length);
      assertEquals("/doy/bar", result.libPath[0]);
      assertEquals("/doy/mumble", result.libPath[1]);
      assertEquals("/foo/bar", result.libPath[2]);
      assertEquals("/foo/mumble", result.libPath[3]);
    }

    // Site directory with a lib folder

    siteDir = new File(context.testDir, "site");
    context.createMockConf(siteDir);
    File libDir = new File(siteDir, "lib");
    context.createDir(libDir);

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withSite(siteDir)
          .run();
      assertTrue(result.containsArgRegex(prefix + ".*"));
      assertNotNull(result.libPath);
      assertEquals(1, result.libPath.length);
      assertEquals(libDir.getAbsolutePath(), result.libPath[0]);
    }

    // The whole enchilada: all three settings.

    {
      Map<String, String> env = new HashMap<>();
      env.put("DRILL_JAVA_LIB_PATH", "/foo/bar:/foo/mumble");
      env.put("DOY_JAVA_LIB_PATH", "/doy/bar:/doy/mumble");
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RUN)
          .withSite(siteDir)
          .withEnvironment(env)
          .run();
      assertTrue(result.containsArgRegex(prefix + ".*"));
      assertNotNull(result.libPath);
      assertEquals(5, result.libPath.length);
      assertEquals(libDir.getAbsolutePath(), result.libPath[0]);
      assertEquals("/doy/bar", result.libPath[1]);
      assertEquals("/doy/mumble", result.libPath[2]);
      assertEquals("/foo/bar", result.libPath[3]);
      assertEquals("/foo/mumble", result.libPath[4]);
    }
  }

  /**
   * Test running a (simulated) Drillbit as a daemon with start, status, stop.
   *
   * @throws IOException
   */

  @Test
  public void testStockDaemon() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    // No drill-env.sh, no distrib-env.sh

    File pidFile;
    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_START).start();
      assertEquals(0, result.returnCode);
      result.validateJava();
      result.validateStockArgs();
      result.validateClassPath(ScriptUtils.stdCp);
      assertTrue(result.stdout.contains("Starting drillbit, logging"));
      assertTrue(result.log.contains("Starting drillbit on"));
      assertTrue(result.log.contains("Drill Log Message"));
      assertTrue(result.out.contains("Drill Stdout Message"));
      assertTrue(result.out.contains("Stderr Message"));
      pidFile = result.pidFile;
    }

    // Save the pid file for reuse.

    assertTrue(pidFile.exists());
    File saveDir = new File(context.testDir, "save");
    context.createDir(saveDir);
    File savedPidFile = new File(saveDir, pidFile.getName());
    context.copyFile(pidFile, savedPidFile);

    // Status should be running

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_STATUS).run( );
      assertEquals(0, result.returnCode);
      assertTrue(result.stdout.contains("drillbit is running"));
    }

    // Start should refuse to start a second Drillbit.

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_START).start();
      assertEquals(1, result.returnCode);
      assertTrue(
          result.stdout.contains("drillbit is already running as process"));
    }

    // Normal start, allow normal shutdown

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_STOP).run();
      assertEquals(0, result.returnCode);
      assertTrue(result.log.contains("Terminating drillbit pid"));
      assertTrue(result.stdout.contains("Stopping drillbit"));
    }

    // Status should report no drillbit (no pid file)

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_STATUS).run();
      assertEquals(1, result.returnCode);
      assertTrue(result.stdout.contains("drillbit is not running"));
    }

    // Stop should report no pid file

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_STOP).run();
      assertEquals(1, result.returnCode);
      assertTrue(
          result.stdout.contains("No drillbit to stop because no pid file"));
    }

    // Get nasty. Put the pid file back. But, there is no process with that pid.

    context.copyFile(savedPidFile, pidFile);

    // Status should now complain.

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_STATUS).run();
      assertEquals(1, result.returnCode);
      assertTrue(result.stdout
          .contains("file is present but drillbit is not running"));
    }

    // As should stop.

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_STOP).run();
      assertEquals(1, result.returnCode);
      assertTrue(
          result.stdout.contains("No drillbit to stop because kill -0 of pid"));
    }
  }

  @Test
  public void testStockDaemonWithArg() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    // As above, but pass an argument.

    {
      String propArg = "-Dproperty=value";
      DrillbitRun runner = new DrillbitRun(DrillbitRun.DRILLBIT_START);
      runner.withArg(propArg);
      RunResult result = runner.start();
      assertEquals(0, result.returnCode);
      result.validateArg(propArg);
    }

    validateAndCloseDaemon(null);
  }

  private void validateAndCloseDaemon(File siteDir) throws IOException {
    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_STATUS)
          .withSite(siteDir)
          .run();
      assertEquals(0, result.returnCode);
      assertTrue(result.stdout.contains("drillbit is running"));
    }

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_STOP)
          .withSite(siteDir)
          .run();
      assertEquals(0, result.returnCode);
    }
  }

  /**
   * The Daemon process creates a pid file. Verify that the DRILL_PID_DIR can be
   * set to put the pid file in a custom location. The test is done with the
   * site (conf) dir in the default location.
   *
   * @throws IOException
   */

  @Test
  public void testPidDir() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);
    File pidDir = context.createDir(new File(context.testDir, "pid"));
    Map<String, String> drillEnv = new HashMap<>();
    drillEnv.put("DRILL_PID_DIR", pidDir.getAbsolutePath());
    context.createEnvFile(new File(siteDir, "drill-env.sh"), drillEnv);

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_START)
          .withPidDir(pidDir)
          .start();
      assertEquals(0, result.returnCode);
      assertTrue(result.pidFile.getParentFile().equals(pidDir));
      assertTrue(result.pidFile.exists());
    }

    validateAndCloseDaemon(null);
  }

  /**
   * Test a custom site directory with the Drill daemon process. The custom
   * directory contains a drill-env.sh with a custom option. Verify that that
   * option is picked up when starting Drill.
   *
   * @throws IOException
   */

  @Test
  public void testSiteDirWithDaemon() throws IOException {
    context.createMockDistrib();

    File siteDir = new File(context.testDir, "site");
    context.createMockConf(siteDir);

    Map<String, String> drillEnv = new HashMap<>();
    drillEnv.put("DRILL_MAX_DIRECT_MEMORY", "9G");
    context.createEnvFile(new File(siteDir, "drill-env.sh"), drillEnv);

    // Use the -site (--config) option.

    {
      DrillbitRun runner = new DrillbitRun(DrillbitRun.DRILLBIT_START);
      runner.withSite(siteDir);
      RunResult result = runner.start();
      assertEquals(0, result.returnCode);
      result.validateArg("-XX:MaxDirectMemorySize=9G");
    }

    validateAndCloseDaemon(siteDir);

    // Set an env var.

    {
      DrillbitRun runner = new DrillbitRun(DrillbitRun.DRILLBIT_START);
      runner.addEnv("DRILL_CONF_DIR", siteDir.getAbsolutePath());
      RunResult result = runner.start();
      assertEquals(0, result.returnCode);
      result.validateArg("-XX:MaxDirectMemorySize=9G");
    }

    validateAndCloseDaemon(siteDir);
  }

  /**
   * Launch the Drill daemon using a custom log file location. The config is in
   * the default location.
   *
   * @throws IOException
   */

  @Test
  public void testLogDirWithDaemon() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);
    File logsDir = context.createDir(new File(context.testDir, "logs"));
    context.removeDir(new File(context.testDrillHome, "log"));
    Map<String, String> drillEnv = new HashMap<>();
    drillEnv.put("DRILL_LOG_DIR", logsDir.getAbsolutePath());
    context.createEnvFile(new File(siteDir, "drill-env.sh"), drillEnv);

    {
      DrillbitRun runner = new DrillbitRun(DrillbitRun.DRILLBIT_START);
      runner.withLogDir(logsDir);
      RunResult result = runner.start();
      assertEquals(0, result.returnCode);
      assertNotNull(result.logFile);
      assertTrue(result.logFile.getParentFile().equals(logsDir));
      assertTrue(result.logFile.exists());
      assertNotNull(result.outFile);
      assertTrue(result.outFile.getParentFile().equals(logsDir));
      assertTrue(result.outFile.exists());
    }

    validateAndCloseDaemon(null);
  }

  /**
   * Some distributions create symlinks to drillbit.sh in standard locations
   * such as /usr/bin. Because drillbit.sh uses its own location to compute
   * DRILL_HOME, it must handle symlinks. This test verifies that process.
   *
   * @throws IOException
   */

  @Test
  public void testDrillbitSymlink() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    File drillbitFile = new File(context.testDrillHome, "bin/drillbit.sh");
    File linksDir = context.createDir(new File(context.testDir, "links"));
    File link = new File(linksDir, drillbitFile.getName());
    try {
      Files.createSymbolicLink(link.toPath(), drillbitFile.toPath());
    } catch (UnsupportedOperationException e) {
      // Well. This is a system without symlinks, so we won't be testing
      // syminks here...

      return;
    }

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_START).start();
      assertEquals(0, result.returnCode);
      assertEquals(result.pidFile.getParentFile(), context.testDrillHome);
    }
    validateAndCloseDaemon(null);
  }

  /**
   * Test the restart command of drillbit.sh
   *
   * @throws IOException
   */

  @Test
  public void testRestart() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    int firstPid;
    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_START).start();
      assertEquals(0, result.returnCode);
      firstPid = result.getPid();
    }

    // Make sure it is running.

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_STATUS)
          .withSite(siteDir)
          .run();
      assertEquals(0, result.returnCode);
      assertTrue(result.stdout.contains("drillbit is running"));
    }

    // Restart. Should get new pid.

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_RESTART).start();
      assertEquals(0, result.returnCode);
      int secondPid = result.getPid();
      assertNotEquals(firstPid, secondPid);
    }

    validateAndCloseDaemon(null);
  }

  /**
   * Simulate a Drillbit that refuses to die. The stop script wait a while, then
   * forces killing.
   *
   * @throws IOException
   */

  @Test
  public void testForcedKill() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    {
      DrillbitRun runner = new DrillbitRun(DrillbitRun.DRILLBIT_START);
      runner.addEnv("PRETEND_HUNG", "1");
      RunResult result = runner.start();
      assertEquals(0, result.returnCode);
    }

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_STATUS)
          .preserveLogs()
          .run();
      assertEquals(0, result.returnCode);
      assertTrue(result.stdout.contains("drillbit is running"));
    }

    {
      RunResult result = new DrillbitRun(DrillbitRun.DRILLBIT_STOP)
          .addEnv("DRILL_STOP_TIMEOUT","5")
          .preserveLogs()
          .run();
      assertEquals(0, result.returnCode);
      assertTrue(result.stdout.contains("drillbit did not complete after"));
    }
  }

  /**
   * Verify the basics of the sqlline script, including the env vars that can be
   * customized. Also validate running in embedded mode (using drillbit memory
   * and other options.)
   *
   * @throws IOException
   */

  @Test
  public void testSqlline() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    int stockArgCount;
    {
      // Out-of-the-box sqlline

      RunResult result = new ScriptRunner("sqlline").run();
      assertEquals(0, result.returnCode);
      result.validateJava();
      result.validateClassPath(ScriptUtils.stdCp);
      assertTrue(result.containsArgsRegex(ScriptUtils.sqlLineArgs));
      stockArgCount = result.echoArgs.size();
    }

    {
      RunResult result = new ScriptRunner("sqlline")
          .withArg("arg1")
          .withArg("arg2")
          .run( );
      assertTrue(result.containsArg("arg1"));
      assertTrue(result.containsArg("arg2"));
    }
    {
      // Change drill memory and other drill-specific
      // settings: should not affect sqlline

      Map<String, String> drillEnv = new HashMap<>();
      drillEnv.put("DRILL_JAVA_OPTS", "-Dprop=value");
      drillEnv.put("DRILL_HEAP", "5G");
      drillEnv.put("DRILL_MAX_DIRECT_MEMORY", "7G");
      drillEnv.put("SERVER_LOG_GC", "1");
      drillEnv.put("DRILLBIT_MAX_PERM", "600M");
      drillEnv.put("DRILLBIT_CODE_CACHE_SIZE", "2G");
      RunResult result = new ScriptRunner("sqlline")
          .withEnvironment(drillEnv)
          .run();
      assertTrue(result.containsArgsRegex(ScriptUtils.sqlLineArgs));

      // Nothing new should have been added

      assertEquals(stockArgCount, result.echoArgs.size());
    }
    {
      // Change client memory: should affect sqlline

      Map<String, String> shellEnv = new HashMap<>();
      shellEnv.put("CLIENT_GC_OPTS", "-XX:+UseG1GC");
      shellEnv.put("SQLLINE_JAVA_OPTS", "-XX:MaxPermSize=256M");
      RunResult result = new ScriptRunner("sqlline")
          .withEnvironment(shellEnv)
          .run();
      assertTrue(result.containsArg("-XX:MaxPermSize=256M"));
      assertTrue(result.containsArg("-XX:+UseG1GC"));
    }
    {
      // Change drill memory and other drill-specific
      // settings: then set the "magic" variable that says
      // that Drill is embedded. The scripts should now use
      // the Drillbit options.

      Map<String, String> drillEnv = new HashMap<>();
      drillEnv.put("DRILL_JAVA_OPTS", "-Dprop=value");
      drillEnv.put("DRILL_HEAP", "5G");
      drillEnv.put("DRILL_MAX_DIRECT_MEMORY", "7G");
      drillEnv.put("SERVER_LOG_GC", "1");
      drillEnv.put("DRILLBIT_MAX_PERM", "600M");
      drillEnv.put("DRILLBIT_CODE_CACHE_SIZE", "2G");
      drillEnv.put("DRILL_EMBEDDED", "1");
      RunResult result = new ScriptRunner("sqlline")
          .withEnvironment(drillEnv)
          .run();

      String expectedArgs[] = {
          "-Dprop=value",
          "-Xms5G", "-Xmx5G",
          "-XX:MaxDirectMemorySize=7G",
          "-XX:ReservedCodeCacheSize=2G",
          "-XX:MaxPermSize=600M"
      };

      result.validateArgs(expectedArgs);
      assertTrue(result.containsArg("sqlline.SqlLine"));
    }
  }

  /**
   * Verify that the sqlline client works with the --site option by customizing
   * items in the site directory.
   *
   * @throws IOException
   */

  @Test
  public void testSqllineSiteDir() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDir, "site");
    context.createMockConf(siteDir);

    // Dummy drill-env.sh to simulate the shipped "example" file
    // with some client-specific changes.

    context.writeFile( new File( siteDir, "drill-env.sh" ),
        "#!/usr/bin/env bash\n" +
        "# Example file\n" +
        "export SQLLINE_JAVA_OPTS=\"-XX:MaxPermSize=256M\"\n"
        );
    File siteJars = new File(siteDir, "jars");
    context.createDir(siteJars);
    context.makeDummyJar(siteJars, "site");
    {
      RunResult result = new ScriptRunner("sqlline").withSite(siteDir).run();
      assertEquals(0, result.returnCode);
      assertTrue(result.containsArg("-XX:MaxPermSize=256M"));
      result.validateClassPath(siteJars.getAbsolutePath() + "/*");
    }
  }

  /**
   * Tests the three scripts that wrap sqlline for specific purposes:
   * <ul>
   * <li>drill-conf — Wrapper for sqlline, uses drill config to find Drill.
   * Seems this one needs fixing to use a config other than the hard-coded
   * $DRILL_HOME/conf location.</li>
   * <li>drill-embedded — Starts a drill "embedded" in SqlLine, using a local
   * ZK.</li>
   * <li>drill-localhost — Wrapper for sqlline, uses a local ZK.</li>
   * </ul>
   *
   * Of these, drill-embedded runs an embedded Drillbit and so should use the
   * Drillbit memory options. The other two are clients, but with simple default
   * options for finding the Drillbit.
   * <p>
   * Because the scripts are simple wrappers, all we do is verify that the right
   * "extra" options are set, not the fundamentals (which were already covered
   * in the sqlline tests.)
   *
   * @throws IOException
   */

  @Test
  public void testSqllineWrappers() throws IOException {
    context.createMockDistrib();
    File siteDir = new File(context.testDrillHome, "conf");
    context.createMockConf(siteDir);

    {
      // drill-conf: just adds a stub JDBC connect string.

      RunResult result = new ScriptRunner("drill-conf")
          .withArg("arg1")
          .run();
      assertEquals(0, result.returnCode);
      result.validateJava();
      result.validateClassPath(ScriptUtils.stdCp);
      assertTrue(result.containsArgsRegex(ScriptUtils.sqlLineArgs));
      assertTrue(result.containsArg("-u"));
      assertTrue(result.containsArg("jdbc:drill:"));
      assertTrue(result.containsArg("arg1"));
    }

    {
      // drill-localhost: Adds a JDBC connect string to a drillbit
      // on the localhost

      RunResult result = new ScriptRunner("drill-localhost")
          .withArg("arg1")
          .run();
      assertEquals(0, result.returnCode);
      result.validateJava();
      result.validateClassPath(ScriptUtils.stdCp);
      assertTrue(result.containsArgsRegex(ScriptUtils.sqlLineArgs));
      assertTrue(result.containsArg("-u"));
      assertTrue(result.containsArg("jdbc:drill:drillbit=localhost"));
      assertTrue(result.containsArg("arg1"));
    }

    {
      // drill-embedded: Uses drillbit startup options and
      // connects to the embedded drillbit.

      RunResult result = new ScriptRunner("drill-embedded")
          .withArg("arg1")
          .run();
      assertEquals(0, result.returnCode);
      result.validateJava();
      result.validateClassPath(ScriptUtils.stdCp);
      assertTrue(result.containsArgsRegex(ScriptUtils.sqlLineArgs));
      assertTrue(result.containsArg("-u"));
      assertTrue(result.containsArg("jdbc:drill:zk=local"));
      assertTrue(result.containsArg("-Xms4G"));
      assertTrue(result.containsArg("-XX:MaxDirectMemorySize=8G"));
      assertTrue(result.containsArg("arg1"));
    }
  }
}