summaryrefslogtreecommitdiff
path: root/build-system/integration-test/framework/src/main/java/com/android/build/gradle/integration/common/fixture/GradleTestProject.kt
blob: 07c24f5c0b714e895f8898ada87a8cc8a6f3d41d (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
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * 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.android.build.gradle.integration.common.fixture

import com.android.SdkConstants
import com.android.Version
import com.android.build.api.variant.BuiltArtifacts
import com.android.build.api.variant.impl.BuiltArtifactsLoaderImpl.Companion.loadFromFile
import com.android.build.gradle.integration.common.fixture.GradleTestProjectBuilder.MemoryRequirement
import com.android.build.gradle.integration.common.fixture.gradle_project.BuildSystem
import com.android.build.gradle.integration.common.fixture.gradle_project.ProjectLocation
import com.android.build.gradle.integration.common.fixture.gradle_project.initializeProjectLocation
import com.android.build.gradle.integration.common.fixture.testprojects.TestProjectBuilder
import com.android.build.gradle.integration.common.truth.AarSubject
import com.android.build.gradle.integration.common.truth.forEachLine
import com.android.build.gradle.integration.common.utils.TestFileUtils
import com.android.build.gradle.internal.TaskManager
import com.android.build.gradle.internal.plugins.VersionCheckPlugin
import com.android.build.gradle.options.BooleanOption
import com.android.builder.core.ToolsRevisionUtils
import com.android.builder.model.AndroidProject
import com.android.sdklib.SdkVersionInfo
import com.android.sdklib.internal.project.ProjectProperties
import com.android.testutils.MavenRepoGenerator
import com.android.testutils.OsType
import com.android.testutils.TestUtils
import com.android.testutils.apk.Aab
import com.android.testutils.apk.Aar
import com.android.testutils.apk.Apk
import com.android.testutils.apk.Zip
import com.android.testutils.truth.PathSubject.assertThat
import com.android.utils.FileUtils
import com.android.utils.Pair
import com.android.utils.combineAsCamelCase
import com.google.common.base.Joiner
import com.google.common.base.MoreObjects
import com.google.common.base.Strings
import com.google.common.base.Throwables
import com.google.common.collect.ImmutableList
import com.google.common.collect.ImmutableMap
import com.google.common.collect.Lists
import com.google.common.truth.Truth
import org.gradle.tooling.GradleConnectionException
import org.gradle.tooling.GradleConnector
import org.gradle.tooling.ProjectConnection
import org.gradle.tooling.internal.consumer.DefaultGradleConnector
import org.gradle.util.GradleVersion
import org.junit.Assert
import org.junit.rules.TestRule
import org.junit.runner.Description
import org.junit.runners.model.Statement
import java.io.File
import java.nio.file.Files
import java.nio.file.Path
import java.time.Duration
import java.util.Arrays
import java.util.Locale
import java.util.concurrent.TimeUnit
import java.util.function.Consumer
import java.util.regex.Pattern
import java.util.stream.Collectors
import com.android.SdkConstants.NDK_DEFAULT_VERSION

/**
 * JUnit4 test rule for integration test.
 *
 *
 * This rule create a gradle project in a temporary directory. It can be use with the @Rule
 * or @ClassRule annotations. Using this class with @Rule will create a gradle project in separate
 * directories for each unit test, whereas using it with @ClassRule creates a single gradle project.
 *
 *
 * The test directory is always deleted if it already exists at the start of the test to ensure a
 * clean environment.
 */
class GradleTestProject @JvmOverloads internal constructor(
    /** Return the name of the test project.  */
    val name: String = DEFAULT_TEST_PROJECT_NAME,
    val rootProjectName: String? = null,
    private val testProject: TestProject? = null,
    private val targetGradleVersion: String?,
    private val targetGradleInstallation: File?,
    private val withDependencyChecker: Boolean,
    val withConfigurationCaching: BaseGradleExecutor.ConfigurationCaching,
    private val gradleProperties: Collection<String>,
    val heapSize: MemoryRequirement,
    private val compileSdkVersion: String = DEFAULT_COMPILE_SDK_VERSION,
    private val profileDirectory: Path?,
    // CMake's version to be used
    private val cmakeVersion: String?,
    // Indicates if CMake's directory information needs to be saved in local.properties
    private val withCmakeDirInLocalProp: Boolean,
    private val relativeNdkSymlinkPath: String?,
    private val withDeviceProvider: Boolean,
    private val withSdk: Boolean,
    private val withAndroidGradlePlugin: Boolean,
    private val withKotlinGradlePlugin: Boolean,
    private val withExtraPluginClasspath: String?,
    private val withPluginManagementBlock: Boolean,
    private val withDependencyManagementBlock: Boolean,
    private val withIncludedBuilds: List<String>,
    private var mutableProjectLocation: ProjectLocation? = null,
    private val additionalMavenRepo: MavenRepoGenerator?,
    val androidSdkDir: File?,
    val androidNdkDir: File,
    private val gradleDistributionDirectory: File,
    private val gradleBuildCacheDirectory: File?,
    val kotlinVersion: String,
    /** Whether or not to output the log of the last build result when a test fails.  */
    private val outputLogOnFailure: Boolean,
    private val openConnections: MutableList<ProjectConnection>? = mutableListOf(),
    /** root project if one exist. This is null for the actual root */
    private val _rootProject: GradleTestProject? = null
) : TestRule {
    companion object {
        const val ENV_CUSTOM_REPO = "CUSTOM_REPO"

        // Limit daemon idle time for tests. 10 seconds is enough for another test
        // to start and reuse the daemon.
        const val GRADLE_DEAMON_IDLE_TIME_IN_SECONDS = 10
        @JvmField
        val DEFAULT_COMPILE_SDK_VERSION: String
        @JvmField
        val DEFAULT_BUILD_TOOL_VERSION: String
        const val DEFAULT_NDK_SIDE_BY_SIDE_VERSION: String = NDK_DEFAULT_VERSION
        @JvmField
        val APPLY_DEVICEPOOL_PLUGIN = System.getenv("APPLY_DEVICEPOOL_PLUGIN")?.toBoolean() ?: false
        val USE_LATEST_NIGHTLY_GRADLE_VERSION = System.getenv("USE_GRADLE_NIGHTLY")?.toBoolean() ?: false
        @JvmField
        val GRADLE_TEST_VERSION: String
        val ANDROID_GRADLE_PLUGIN_VERSION: String?
        const val DEVICE_TEST_TASK = "deviceCheck"

        internal const val MAX_TEST_NAME_DIR_WINDOWS = 50

        /**
         * List of Apk file reference that should be closed and deleted once the TestRule is done. This
         * is useful on Windows when Apk will lock the underlying file and most test code do not use
         * try-with-resources nor explicitly call close().
         */
        private val tmpApkFiles: MutableList<Apk> = mutableListOf()
        private const val COMMON_HEADER = "commonHeader.gradle"
        internal const val COMMON_LOCAL_REPO = "commonLocalRepo.gradle"
        private const val COMMON_BUILD_SCRIPT = "commonBuildScript.gradle"
        private const val COMMON_VERSIONS = "commonVersions.gradle"
        private const val VERSION_CATALOG = "versionCatalog.gradle"
        const val DEFAULT_TEST_PROJECT_NAME = "project"

        @JvmStatic
        fun builder(): GradleTestProjectBuilder {
            return GradleTestProjectBuilder()
        }

        /** Crawls the tools/external/gradle dir, and gets the latest gradle binary.  */
        private fun computeLatestGradleCheckedIn(): String? {
            val gradleDir = TestUtils.resolveWorkspacePath("tools/external/gradle").toFile()

            // should match gradle-3.4-201612071523+0000-bin.zip, and gradle-3.2-bin.zip
            val gradleVersion = Pattern.compile("^gradle-(\\d+.\\d+)(-.+)?-bin\\.zip$")
            val revisionsCmp: Comparator<Pair<String, String>> =
                Comparator.nullsFirst(
                    Comparator.comparing { it: Pair<String, String> ->
                        GradleVersion.version(it.first)
                    }
                        .thenComparing { obj: Pair<String, String> -> obj.second }
                )
            var highestRevision: Pair<String, String>? = null
            gradleDir.listFiles()?.forEach { f ->
                val matcher = gradleVersion.matcher(f.name)
                if (matcher.matches()) {
                    val current =
                        Pair.of(matcher.group(1), Strings.nullToEmpty(matcher.group(2)))
                    if (revisionsCmp.compare(highestRevision, current) < 0) {
                        highestRevision = current
                    }
                }
            }

            return if (highestRevision == null) {
                null
            } else {
                highestRevision?.first + highestRevision?.second
            }
        }

        private fun generateRepoScript(repositories: List<Path>): String {
            val script = StringBuilder()
            script.append("repositories {\n")
            for (repo in repositories) {
                script.append(mavenSnippet(repo))
            }
            script.append("}\n")
            return script.toString()
        }

        fun mavenSnippet(repo: Path): String {
            return String.format(
                """maven {
  url '%s'
  metadataSources {
    mavenPom()
    artifact()
  }
 }
""",
                repo.toUri().toString()
            )
        }

        @JvmStatic
        val localRepositories: List<Path>
            get() = BuildSystem.get().localRepositories

        /**
         * Returns the prebuilts CMake folder for the requested version of CMake. Note: This function
         * returns a path within the Android SDK which is expected to be used in cmake.dir.
         */
        @JvmStatic
        fun getCmakeVersionFolder(cmakeVersion: String): File {
            val cmakeVersionFolderInSdk =
                    TestUtils.getSdk().resolve(String.format("cmake/%s", cmakeVersion))
            if (!Files.isDirectory(cmakeVersionFolderInSdk)) {
                throw RuntimeException(
                    String.format("Could not find CMake in %s", cmakeVersionFolderInSdk)
                )
            }
            return cmakeVersionFolderInSdk.toFile()
        }

        /**
         * The ninja in 3.6 cmake folder does not support long file paths. This function returns the
         * version that does handle them.
         */
        val preferredNinja: File
            get() {
                val cmakeFolder = getCmakeVersionFolder("3.10.4819442")
                return if (SdkConstants.CURRENT_PLATFORM == SdkConstants.PLATFORM_WINDOWS) {
                    File(cmakeFolder, "bin/ninja.exe")
                } else {
                    File(cmakeFolder, "bin/ninja")
                }
            }

        private fun generateVersions(): String {
            return String.format(
                Locale.US,
                "// Generated by GradleTestProject::generateVersions%n"
                        + "buildVersion = '%s'%n"
                        + "baseVersion = '%s'%n"
                        + "supportLibVersion = '%s'%n"
                        + "testSupportLibVersion = '%s'%n"
                        + "playServicesVersion = '%s'%n"
                        + "supportLibMinSdk = %d%n"
                        + "ndk19SupportLibMinSdk = %d%n"
                        + "constraintLayoutVersion = '%s'%n",
                Version.ANDROID_GRADLE_PLUGIN_VERSION,
                Version.ANDROID_TOOLS_BASE_VERSION,
                SUPPORT_LIB_VERSION,
                TEST_SUPPORT_LIB_VERSION,
                PLAY_SERVICES_VERSION,
                SUPPORT_LIB_MIN_SDK,
                NDK_19_SUPPORT_LIB_MIN_SDK,
                SdkConstants.LATEST_CONSTRAINT_LAYOUT_VERSION
            )
        }

        /**
         * Returns a string that contains the gradle buildscript content
         */
        @JvmStatic
        val gradleBuildscript: String
            get() =
                """
                apply from: "../commonHeader.gradle"
                buildscript { apply from: "../commonBuildScript.gradle" }
                apply from: "../commonLocalRepo.gradle"

                // Treat javac warnings as errors
                tasks.withType(JavaCompile) {
                    options.compilerArgs << "-Werror"
                }
                """.trimIndent()

        @JvmStatic
        val compileSdkHash: String
            get() {
                var compileTarget = DEFAULT_COMPILE_SDK_VERSION.replace("[\"']".toRegex(), "")
                if (!compileTarget.startsWith("android-")) {
                    compileTarget = "android-$compileTarget"
                }
                return compileTarget
            }

        init {
            try {
                GRADLE_TEST_VERSION = if (USE_LATEST_NIGHTLY_GRADLE_VERSION) {
                    computeLatestGradleCheckedIn() ?: error("Failed to find latest nightly version.")
                } else {
                    VersionCheckPlugin.GRADLE_MIN_VERSION.toString()
                }

                // These are some properties that we use in the integration test projects, when generating
                // build.gradle files. In case you would like to change any of the parameters, for instance
                // when testing cross product of versions of buildtools, compile sdks, plugin versions,
                // there are corresponding system environment variable that you are able to set.
                val envBuildToolVersion = Strings.emptyToNull(System.getenv("CUSTOM_BUILDTOOLS"))
                DEFAULT_BUILD_TOOL_VERSION =
                    MoreObjects.firstNonNull(
                        envBuildToolVersion,
                        ToolsRevisionUtils.DEFAULT_BUILD_TOOLS_REVISION.toString()
                    )
                val envVersion = Strings.emptyToNull(System.getenv("CUSTOM_PLUGIN_VERSION"))
                ANDROID_GRADLE_PLUGIN_VERSION =
                    MoreObjects.firstNonNull(
                        envVersion,
                        Version.ANDROID_GRADLE_PLUGIN_VERSION
                    )
                val envCustomCompileSdk = Strings.emptyToNull(System.getenv("CUSTOM_COMPILE_SDK"))
                DEFAULT_COMPILE_SDK_VERSION =
                    MoreObjects.firstNonNull(
                        envCustomCompileSdk,
                        com.android.build.gradle.integration.common.fixture.DEFAULT_COMPILE_SDK_VERSION.toString()
                    )
            } catch (t: Throwable) {
                // Print something to stdout, to give us a chance to debug initialization problems.
                println(Throwables.getStackTraceAsString(t))
                throw Throwables.propagate(t)
            }
        }
    }


    private val ndkSymlinkPath: File? by lazy {
        relativeNdkSymlinkPath?.let { location.testLocation.buildDir.resolve(it).canonicalFile }
    }

    val androidNdkSxSRootSymlink: File?
        get() = ndkSymlinkPath?.resolve(SdkConstants.FD_NDK_SIDE_BY_SIDE)

    val location: ProjectLocation
        get() = mutableProjectLocation ?: error("Project location has not been initialized yet")

    val buildFile: File
        get() = File(location.projectDir, "build.gradle")

    val ktsBuildFile: File
        get() = File(location.projectDir, "build.gradle.kts")

    val projectDir: File
        get() = location.projectDir

    lateinit var localProp: File
        private set

    /** Returns a path to NDK suitable for embedding in build.gradle. It has slashes escaped for Windows */
    val ndkPath: String
        get() = androidNdkDir.absolutePath.replace("\\", "\\\\")

    private var _additionalMavenRepoDir: Path? = null

    val additionalMavenRepoDir: Path?
        get() = _additionalMavenRepoDir

    /** \Returns the latest build result.  */
    private var _buildResult: GradleBuildResult? = null

    /** Returns the latest build result.  */
    val buildResult: GradleBuildResult
        get() = _buildResult ?: throw RuntimeException("No result available. Run Gradle first.")

    /** Returns a Gradle project Connection  */
    private val projectConnection: ProjectConnection by lazy {

        val connector = GradleConnector.newConnector()
        (connector as DefaultGradleConnector)
            .daemonMaxIdleTime(
                GRADLE_DEAMON_IDLE_TIME_IN_SECONDS,
                TimeUnit.SECONDS
            )

        connector
            .useGradleUserHomeDir(location.testLocation.gradleUserHome.toFile())
            .forProjectDirectory(location.projectDir)

        if (targetGradleInstallation != null) {
            connector.useInstallation(targetGradleInstallation)
        } else {
            val distributionName = String.format(
                "gradle-%s-bin.zip",
                targetGradleVersion ?: GRADLE_TEST_VERSION
            )
            val distributionZip = File(gradleDistributionDirectory, distributionName)
            assertThat(distributionZip).isFile()

            connector.useDistribution(distributionZip.toURI())
        }

        connector.connect().also { connection ->
            rootProject.openConnections?.add(connection)
        }
    }

    /**
     * Create a GradleTestProject representing a subProject of another GradleTestProject.
     *
     * @param subProject name of the subProject, or the subProject's gradle project path
     * @param rootProject root GradleTestProject.
     */
    private constructor(
        subProject: String,
        rootProject: GradleTestProject
    ) :
        this(
            name = subProject.substring(subProject.lastIndexOf(':') + 1),
            rootProjectName = null,
            testProject = null,
            targetGradleVersion = rootProject.targetGradleVersion,
            targetGradleInstallation = rootProject.targetGradleInstallation,
            withDependencyChecker = rootProject.withDependencyChecker,
            withConfigurationCaching = rootProject.withConfigurationCaching,
            gradleProperties = ImmutableList.of(),
            heapSize = rootProject.heapSize,
            compileSdkVersion = rootProject.compileSdkVersion,
            profileDirectory = rootProject.profileDirectory,
            cmakeVersion = rootProject.cmakeVersion,
            withCmakeDirInLocalProp = rootProject.withCmakeDirInLocalProp,
            relativeNdkSymlinkPath = rootProject.relativeNdkSymlinkPath,
            withDeviceProvider = rootProject.withDeviceProvider,
            withSdk = rootProject.withSdk,
            withAndroidGradlePlugin = rootProject.withAndroidGradlePlugin,
            withKotlinGradlePlugin = rootProject.withKotlinGradlePlugin,
            withExtraPluginClasspath = rootProject.withExtraPluginClasspath,
            withPluginManagementBlock = rootProject.withPluginManagementBlock,
            withDependencyManagementBlock = rootProject.withDependencyManagementBlock,
            withIncludedBuilds = ImmutableList.of(),
            mutableProjectLocation = rootProject.location.createSubProjectLocation(subProject),
            additionalMavenRepo = rootProject.additionalMavenRepo,
            androidSdkDir = rootProject.androidSdkDir,
            androidNdkDir = rootProject.androidNdkDir,
            gradleDistributionDirectory = rootProject.gradleDistributionDirectory,
            gradleBuildCacheDirectory = rootProject.gradleBuildCacheDirectory,
            kotlinVersion = rootProject.kotlinVersion,
            outputLogOnFailure = rootProject.outputLogOnFailure,
            openConnections = null,
            _rootProject = rootProject
        ) {

        Assert.assertTrue(
            "No subproject dir at $projectDir",
            projectDir.isDirectory
        )
    }

    /** returns the root project or this if there's no root */
    val rootProject: GradleTestProject
        get() = _rootProject ?: this

    override fun apply(
        base: Statement,
        description: Description
    ): Statement {
        return if (rootProject != this) {
            rootProject.apply(base, description)
        } else object : Statement() {
            override fun evaluate() {
                if (mutableProjectLocation == null) {
                    mutableProjectLocation = initializeProjectLocation(
                        description.testClass,
                        description.methodName,
                        name
                    )
                }
                populateTestDirectory()
                var testFailed = false
                try {
                    base.evaluate()
                } catch (e: Throwable) {
                    testFailed = true
                    throw e
                } finally {
                    for (tmpApkFile in tmpApkFiles) {
                        try {
                            tmpApkFile.close()
                        } catch (e: Exception) {
                            System.err
                                .println("Error while closing APK file : " + e.message)
                        }
                        val tmpFile = tmpApkFile.file.toFile()
                        if (tmpFile.exists() && !tmpFile.delete()) {
                            System.err.println(
                                "Cannot delete temporary file " + tmpApkFile.file
                            )
                        }
                    }
                    openConnections?.forEach(ProjectConnection::close)

                    if (outputLogOnFailure && testFailed) {
                        _buildResult?.let {
                            System.err
                                .println("==============================================")
                            System.err
                                .println("= Test $description failed. Last build:")
                            System.err
                                .println("==============================================")
                            System.err
                                .println("=================== Stderr ===================")
                            // All output produced during build execution is written to the standard
                            // output file handle since Gradle 4.7. This should be empty.
                            it.stderr.forEachLine { System.err.println(it) }
                            System.err
                                .println("=================== Stdout ===================")
                            it.stdout.forEachLine { System.err.println(it) }
                            System.err
                                .println("==============================================")
                            System.err
                                .println("=============== End last build ===============")
                            System.err
                                .println("==============================================")
                        }
                    }
                }
            }
        }
    }

    /** Returns a string that contains the gradle buildscript content  */
    fun computeGradleBuildscript(): String {
        val projectParentDir = projectDir.parent
        return """
                buildscript { apply from: "${File(projectParentDir, "commonBuildScript.gradle").toURI()}" }
                // plugin block should go here
                apply from: "${File(projectParentDir, "commonHeader.gradle").toURI()}"

                // Treat javac warnings as errors
                tasks.withType(JavaCompile) {
                    options.compilerArgs << "-Werror"
                }

                """.trimIndent()
    }


    private fun populateTestDirectory() {
        val projectDir = projectDir
        FileUtils.deleteRecursivelyIfExists(projectDir)
        FileUtils.mkdirs(projectDir)

        val projectParentDir = projectDir.parent
        File(projectParentDir, COMMON_VERSIONS).writeText(generateVersions())
        File(projectParentDir, VERSION_CATALOG).writeText(generateVersionCatalog())
        val projectRepoScript = generateProjectRepoScript()
        File(projectParentDir, COMMON_LOCAL_REPO).writeText(projectRepoScript)
        File(projectParentDir, COMMON_HEADER).writeText(generateCommonHeader())
        File(projectParentDir, COMMON_BUILD_SCRIPT).writeText(generateCommonBuildScript())

        if (testProject != null) {
            testProject.write(
                projectDir,
                if (testProject.containsFullBuildScript()) "" else computeGradleBuildscript(),
                projectRepoScript
            )
        } else {
            buildFile.writeText(computeGradleBuildscript())
        }
        createSettingsFile(settingsFile, rootProjectName)
        localProp = createLocalProp()
        createGradleProp()

        if (testProject is TestProjectBuilder) {
            for (includedBuild in  testProject.includedBuilds) {
                val includedProjectDir = File(projectDir, includedBuild.name)
                createSettingsFile(
                    File(includedProjectDir, "settings.gradle"),
                    rootProjectName = null
                )
                createLocalProp(includedProjectDir)
            }
        }
    }

    private fun getRepoDirectories(): List<Path> {
        val builder =
                ImmutableList.builder<Path>()
        builder.addAll(localRepositories)
        val additionalMavenRepo = getAdditionalMavenRepo()
        if (additionalMavenRepo != null) {
            builder.add(additionalMavenRepo)
        }
        return builder.build()
    }

    // Not enabled in tests
    val booleanOptions: Map<BooleanOption, Boolean>
        get() {
            val builder =
                ImmutableMap
                    .builder<BooleanOption, Boolean>()
            builder.put(
                BooleanOption
                    .DISALLOW_DEPENDENCY_RESOLUTION_AT_CONFIGURATION,
                withDependencyChecker
            )
            builder.put(
                BooleanOption.ENABLE_SDK_DOWNLOAD,
                false
            ) // Not enabled in tests
            return builder.build()
        }

    private fun generateProjectRepoScript(): String {
        return generateRepoScript(getRepoDirectories())
    }

    internal fun getAdditionalMavenRepo(): Path? {
        if (additionalMavenRepo == null) {
            return null
        }
        if (_additionalMavenRepoDir == null) {
            val moreMavenRepoDir = projectDir
                .toPath()
                .parent
                .resolve("additional_maven_repo")
            _additionalMavenRepoDir = moreMavenRepoDir
            additionalMavenRepo.generate(moreMavenRepoDir)
        }
        return _additionalMavenRepoDir
    }

    private fun generateCommonHeader(): String {
        var result = String.format(
            """
ext {
    buildToolsVersion = '%1${"$"}s'
    latestCompileSdk = %2${"$"}s
    kotlinVersion = '%4${"$"}s'
    composeVersion = '%5${"$"}s'
    composeCompilerVersion = '%6${"$"}s'
}
""",
            DEFAULT_BUILD_TOOL_VERSION,
            compileSdkVersion,
            false,
            kotlinVersion,
            TaskManager.COMPOSE_UI_VERSION,
            TaskManager.COMPOSE_KOTLIN_COMPILER_EXTENSION_VERSION,
        )
        if (APPLY_DEVICEPOOL_PLUGIN) {
            result += """
allprojects { proj ->
    proj.plugins.withId('com.android.application') {
        proj.apply plugin: 'devicepool'
    }
    proj.plugins.withId('com.android.library') {
        proj.apply plugin: 'devicepool'
    }
    proj.plugins.withId('com.android.model.application') {
        proj.apply plugin: 'devicepool'
    }
    proj.plugins.withId('com.android.model.library') {
        proj.apply plugin: 'devicepool'
    }
}
"""
        }
        return result
    }

    fun generateCommonBuildScript(): String {
        return BuildSystem.get()
            .getCommonBuildScriptContent(
                withAndroidGradlePlugin, withKotlinGradlePlugin, withDeviceProvider, withExtraPluginClasspath
            )
    }

    /**
     * Create a GradleTestProject representing a subproject.
     *
     * @param name name of the subProject, or the subProject's gradle project path
     */
    fun getSubproject(name: String): GradleTestProject {
        return GradleTestProject(name, rootProject)
    }

    /** Return the path to the default Java main source dir.  */
    val mainSrcDir: File
        get() = getMainSrcDir("java")

    /** Return the path to the default Java main source dir.  */
    fun getMainSrcDir(language: String): File {
        return FileUtils.join(projectDir, "src", "main", language)
    }

    /** Return the path to the default Java main resources dir.  */
    val mainJavaResDir: File
        get() = FileUtils.join(projectDir, "src", "main", "resources")

    /** Return the path to the default main jniLibs dir.  */
    val mainJniLibsDir: File
        get() = FileUtils.join(projectDir, "src", "main", "jniLibs")

    /** Return the path to the default main res dir.  */
    val mainResDir: File
        get() = FileUtils.join(projectDir, "src", "main", "res")

    /** Return the settings.gradle of the test project.  */
    val settingsFile: File
        get() = File(projectDir, "settings.gradle")

    /** Return the gradle.properties file of the test project.  */
    val gradlePropertiesFile: File
        get() = File(projectDir, "gradle.properties")

    val buildDir: File
        get() = FileUtils.join(projectDir, "build")

    /** Return the output directory from Android plugins.  */
    val outputDir: File
        get() = FileUtils.join(projectDir, "build", SdkConstants.FD_OUTPUTS)

    /** Return the output directory from Android plugins.  */
    val bundleDir: File
        get() = FileUtils.join(projectDir, "build", SdkConstants.FD_BUNDLE)

    /** Return the output directory from Android plugins.  */
    val intermediatesDir: File
        get() = FileUtils
            .join(projectDir, "build", SdkConstants.FD_INTERMEDIATES)

    /** Return a File under the output directory from Android plugins.  */
    fun getOutputFile(apkLocation: ApkLocation, vararg paths: String?): File {
        return FileUtils.join(apkLocation.getDir(this), *paths)
    }

    /** Return a File under the output directory from Android plugins.  */
    fun getOutputFile(vararg paths: String?): File {
        return FileUtils.join(outputDir, *paths)
    }

    /** Return a File under the intermediates directory from Android plugins.  */
    fun getIntermediateFile(vararg paths: String?): File {
        return FileUtils.join(intermediatesDir, *paths)
    }

    /** Returns a File under the generated folder.  */
    fun getGeneratedSourceFile(vararg paths: String?): File {
        return FileUtils.join(generatedDir, *paths)
    }

    val generatedDir: File
        get() = FileUtils.join(projectDir, "build", SdkConstants.FD_GENERATED)

    /**
     * Returns the directory in which profiles will be generated. A null value indicates that
     * profiles may not be generated, though setting [ ][com.android.build.gradle.options.StringOption.PROFILE_OUTPUT_DIR] in gradle.properties will
     * induce profile generation without affecting this return value
     */
    fun getProfileDirectory(): Path? {
        return if (profileDirectory == null || profileDirectory.isAbsolute) {
            profileDirectory
        } else {
            rootProject.projectDir.toPath().resolve(profileDirectory)
        }
    }

    /**
     * Return the output apk File from the application plugin for the given dimension.
     *
     *
     * Expected dimensions orders are: - product flavors - build type - other modifiers (e.g.
     * "unsigned", "aligned")
     *
     */
    @Deprecated(
        """Use {@link #getApk(ApkType, String...)} or {@link #getApk(String, ApkType,
     *     String...)}"""
    )
    fun getApk(vararg dimensions: String?): Apk {
        val dimensionList: MutableList<String?> =
            Lists
                .newArrayListWithExpectedSize(1 + dimensions.size)
        dimensionList.add(name)
        dimensionList.addAll(Arrays.asList(*dimensions))
        // FIX ME : "debug" should be an explicit variant name rather than mixed in dimensions.
        val flavorDimensionList =
            Arrays.stream(dimensions)
                .filter { dimension: String? -> dimension != "unsigned" }
                .collect(
                    Collectors.toList()
                )
        val apkFile = getOutputFile(
            "apk"
                    + File.separatorChar
                    + Joiner.on(File.separatorChar)
                .join(flavorDimensionList)
                    + File.separatorChar
                    + Joiner.on("-").join(dimensionList)
                    + SdkConstants.DOT_ANDROID_PACKAGE
        )
        return _getApk(apkFile)
    }

    /**
     * Internal Apk construction facility that will copy the file first on Windows to avoid locking
     * the underlying file.
     *
     * @param apkFile the file handle to create the APK from.
     * @return the Apk object.
     */
    private fun _getApk(apkFile: File): Apk {
        val apk: Apk
        if (OsType.getHostOs() == OsType.WINDOWS && apkFile.exists()) {
            val copy = File.createTempFile("tmp", ".apk")
            FileUtils.copyFile(apkFile, copy)
            apk = object : Apk(copy) {
                override fun getFile(): Path {
                    return apkFile.toPath()
                }
            }
            tmpApkFiles.add(apk)
        } else {
            // the IDE erroneously indicate to use try-with-resources because APK is a autocloseable
            // but nothing is opened here.
            apk = Apk(apkFile)
        }
        return apk
    }

    public interface ApkType {
        val buildType: String
        val testName: String?
        val isSigned: Boolean

        companion object {
            @JvmStatic
            fun of(
                name: String,
                isSigned: Boolean
            ): ApkType {
                return object :
                    ApkType {
                    override val buildType: String
                        get() = name

                    override val testName: String?
                        get() = null

                    override val isSigned: Boolean
                        get() = isSigned

                    override fun toString(): String {
                        return MoreObjects.toStringHelper(this)
                            .add("getBuildType", buildType)
                            .add("getTestName", testName)
                            .add("isSigned", isSigned)
                            .toString()
                    }
                }
            }

            @JvmStatic
            fun of(
                name: String,
                testName: String?,
                isSigned: Boolean
            ): ApkType {
                return object :
                    ApkType {
                    override val buildType: String
                        get() = name

                    override val testName: String?
                        get() = testName

                    override val isSigned: Boolean
                        get() = isSigned

                    override fun toString(): String {
                        return MoreObjects.toStringHelper(this)
                            .add("getBuildType", buildType)
                            .add("getTestName", testName)
                            .add("isSigned", isSigned)
                            .toString()
                    }
                }
            }

            @JvmField
            val DEBUG = of("debug", true)
            @JvmField
            val RELEASE = of("release", false)
            @JvmField
            val RELEASE_SIGNED = of("release", true)
            @JvmField
            val ANDROIDTEST_DEBUG = of("debug", "androidTest", true)
            @JvmField
            val ANDROIDTEST_RELEASE = of("release", "androidTest", true)
            @JvmField
            val MIN_SIZE_REL = of("minSizeRel", false)
        }
    }

    enum class ApkLocation {
        Output {
            override fun getDir(testProject: GradleTestProject): File = testProject.outputDir
        },
        Intermediates {
            override fun getDir(testProject: GradleTestProject): File = testProject.intermediatesDir
        };

        abstract fun getDir(testProject: GradleTestProject): File
    }

    /**
     * Return the output apk File from the application plugin for the given dimension as a File.
     *
     *
     * Expected dimensions orders are: - product flavors -
     */
    @JvmOverloads
    fun getApkAsFile(
        apk: ApkType,
        apkLocation: ApkLocation = ApkLocation.Output,
        vararg dimensions: String,
    ): File {
        return getApkAsFile(
            apkLocation = apkLocation,
            filterName = null /* filterName */,
            apkType = apk,
            dimensions = *dimensions
        )
    }

    /**
     * Return the output apk File from the application plugin for the given dimension.
     *
     *
     * Expected dimensions orders are: - product flavors -
     */
    fun getApk(
        apk: ApkType,
        vararg dimensions: String,
    ): Apk {
        return getApk(
            filterName = null,
            apkType = apk,
            dimensions = *dimensions,
            apkLocation = ApkLocation.Output,
        )
    }


    fun getApk(
        apk: ApkType,
        apkLocation: ApkLocation,
        vararg dimensions: String,
    ): Apk {
        return getApk(
            filterName = null,
            apkType = apk,
            dimensions = *dimensions,
            apkLocation = apkLocation
        )
    }

    /**
     * Return the bundle universal output apk File from the application plugin for the given
     * dimension.
     *
     *
     * Expected dimensions orders are: - product flavors -
     */
    fun getBundleUniversalApk(apk: ApkType): Apk {
        return getOutputApk(
            ApkLocation.Output,
            "apk_from_bundle",
            null,
            apk,
            ImmutableList.of(),
            "universal"
        )
    }

    /**
     * Return the output full split apk File from the application plugin for the given dimension as
     * a File.
     *
     *
     * Expected dimensions orders are: - product flavors -
     */
    @JvmOverloads
    fun getApkAsFile(
        filterName: String?,
        apkType: ApkType,
        apkLocation: ApkLocation = ApkLocation.Output,
        vararg dimensions: String
    ): File {
        return getOutputApkFile(
            apkLocation = apkLocation,
            pathPrefix = "apk",
            filterName = filterName,
            apkType = apkType,
            dimensions = ImmutableList.copyOf(dimensions),
            suffix = null
        )
    }

    /**
     * Return the output full split apk File from the application plugin for the given dimension.
     *
     *
     * Expected dimensions orders are: - product flavors -
     */
    @JvmOverloads
    fun getApk(
        filterName: String?,
        apkType: ApkType,
        apkLocation: ApkLocation = ApkLocation.Output,
        vararg dimensions: String
    ): Apk {
        return getOutputApk(
            apkLocation,
            "apk",
            filterName,
            apkType,
            ImmutableList.copyOf(dimensions),
            null
        )
    }

    private fun getOutputApkFile(
        apkLocation: ApkLocation,
        pathPrefix: String,
        filterName: String?,
        apkType: ApkType,
        dimensions: ImmutableList<String>,
        suffix: String?): File {
        return getOutputFile(
            apkLocation,
            pathPrefix
                    + (if (apkType.testName != null) File.separatorChar
                .toString() + apkType.testName else "")
                    + File.separatorChar
                    + dimensions.combineAsCamelCase()
                    + File.separatorChar
                    + apkType.buildType
                    + File.separatorChar
                    + mangleApkName(apkType, filterName, dimensions, suffix)
                    + if (apkType.isSigned) SdkConstants
                .DOT_ANDROID_PACKAGE else "-unsigned" + SdkConstants
                .DOT_ANDROID_PACKAGE
        )
    }

    private fun getOutputApk(
        apkLocation: ApkLocation,
        pathPrefix: String,
        filterName: String?,
        apkType: ApkType,
        dimensions: ImmutableList<String>,
        suffix: String?
    ): Apk {
        return _getApk(
            getOutputApkFile(apkLocation, pathPrefix, filterName, apkType, dimensions, suffix)
        )
    }

    /** Returns the APK given its file name.  */
    fun getApkByFileName(apkType: ApkType, apkFileName: String): Apk {
        return _getApk(
            getOutputFile(
                "apk"
                        + (if (apkType.testName != null) File.separatorChar.toString() + apkType.testName else "")
                        + File.separatorChar
                        + apkType.buildType
                        + File.separatorChar
                        + apkFileName
            )
        )
    }

    fun getBundle(type: ApkType): Aab {
        val bundles =
            outputDir.resolve("bundle/${type.buildType}/")
                .walk()
                .filter { it.extension == SdkConstants.EXT_APP_BUNDLE }
                .toList()
        if (bundles.size > 1) {
            throw UnsupportedOperationException("Support for multiple bundles is not implemented.")
        }
        return Aab(bundles.single())
    }

    private fun mangleApkName(
        apkType: ApkType,
        filterName: String?,
        dimensions: List<String?>,
        suffix: String?
    ): String {
        val dimensionList: MutableList<String?> =
            Lists
                .newArrayListWithExpectedSize(1 + dimensions.size)
        dimensionList.add(name)
        dimensionList.addAll(dimensions)
        if (!Strings.isNullOrEmpty(filterName)) {
            dimensionList.add(filterName)
        }
        if (!Strings.isNullOrEmpty(apkType.buildType)) {
            dimensionList.add(apkType.buildType)
        }
        if (!Strings.isNullOrEmpty(apkType.testName)) {
            dimensionList.add(apkType.testName)
        }
        if (suffix != null) {
            dimensionList.add(suffix)
        }
        return Joiner.on("-").join(dimensionList)
    }

    val testApk: Apk
        get() = getApk(ApkType.ANDROIDTEST_DEBUG)

    fun getTestApk(vararg dimensions: String): Apk {
        return getApk(ApkType.ANDROIDTEST_DEBUG, *dimensions)
    }

    private fun testAar(
        dimensions: List<String>,
        action: AarSubject.() -> Unit
    ) {
        val dimensionList: MutableList<String?> =
            Lists.newArrayListWithExpectedSize(1 + dimensions.size)
        dimensionList.add(name)
        dimensionList.addAll(dimensions)
        Aar(
            getOutputFile(
                "aar",
                Joiner.on("-").join(dimensionList) + SdkConstants
                    .DOT_AAR
            )
        ).use { aar ->
            val subject =
                Truth.assertAbout(AarSubject.aars()).that(aar)
            action(subject)
        }
    }

    /**
     * Allows testing the aar.
     *
     * Testing happens in the callback that receives an [AarSubject]
     *
     * Expected dimensions orders are: - product flavors - build type - other modifiers (e.g.
     * "unsigned", "aligned")
     */
    fun testAar(
        dimension1: String,
        action: Consumer<AarSubject>
    ) {
        testAar(listOf(dimension1)) { action.accept(this) }
    }

    /**
     * Allows testing the aar.
     *
     * Testing happens in the callback that receives an [AarSubject]
     *
     * Expected dimensions orders are: - product flavors - build type - other modifiers (e.g.
     * "unsigned", "aligned")
     */
    fun testAar(
        dimension1: String,
        dimension2: String,
        action: Consumer<AarSubject>
    ) {
        testAar(listOf(dimension1, dimension2)) { action.accept(this) }
    }

    /**
     * Allows testing the aar.
     *
     * Testing happens in the callback that receives an [AarSubject]
     *
     * Expected dimensions orders are: - product flavors - build type - other modifiers (e.g.
     * "unsigned", "aligned")
     */
    fun assertThatAar(
        dimension1: String,
        action: AarSubject.() -> Unit
    ) {
        testAar(listOf(dimension1), action)
    }

    /**
     * Allows testing the aar.
     *
     * Testing happens in the callback that receives an [AarSubject]
     *
     * Expected dimensions orders are: - product flavors - build type - other modifiers (e.g.
     * "unsigned", "aligned")
     */
    fun assertThatAar(
        dimension1: String,
        dimension2: String,
        action: AarSubject.() -> Unit
    ) {
        testAar(listOf(dimension1, dimension2), action)
    }

    private fun getAar(
        dimensions: List<String>,
        action: Aar.() -> Unit
    ) {
        val dimensionList: MutableList<String?> =
            Lists.newArrayListWithExpectedSize(1 + dimensions.size)
        dimensionList.add(name)
        dimensionList.addAll(dimensions)
        Aar(
            getOutputFile(
                "aar",
                Joiner.on("-").join(dimensionList) + SdkConstants.DOT_AAR
            )
        ).use { aar -> action(aar) }
    }

    /**
     * Allows testing the aar.
     *
     * Testing happens in the callback that receives an [AarSubject]
     *
     * Expected dimensions orders are: - product flavors - build type - other modifiers (e.g.
     * "unsigned", "aligned")
     */
    fun getAar(
        dimension1: String,
        action: Consumer<Aar>
    ) {
        getAar(listOf(dimension1)) { action.accept(this) }
    }

    /**
     * Allows testing the aar.
     *
     * Testing happens in the callback that receives an [AarSubject]
     *
     * Expected dimensions orders are: - product flavors - build type - other modifiers (e.g.
     * "unsigned", "aligned")
     */
    fun withAar(
        dimension1: String,
        action: Aar.() -> Unit
    ) {
        getAar(listOf(dimension1), action)
    }

    /**
     * Allows testing the aar.
     *
     * Testing happens in the callback that receives an [AarSubject]
     *
     * Expected dimensions orders are: - product flavors - build type - other modifiers (e.g.
     * "unsigned", "aligned")
     */
    fun withAar(
        dimensions: List<String>,
        action: Aar.() -> Unit
    ) {
        getAar(dimensions, action)
    }

    /**
     * Returns the output bundle file from the instantapp plugin for the given dimension.
     *
     *
     * Expected dimensions orders are: - product flavors - build type
     */
    fun getInstantAppBundle(vararg dimensions: String): Zip {
        val dimensionList: MutableList<String?> =
            Lists
                .newArrayListWithExpectedSize(1 + dimensions.size)
        dimensionList.add(name)
        dimensionList.addAll(Arrays.asList(*dimensions))
        return Zip(
            getOutputFile(
                "apk",
                ImmutableList.copyOf(dimensions)
                    .combineAsCamelCase(),
                Joiner.on("-").join(dimensionList) + SdkConstants
                    .DOT_ZIP
            )
        )
    }

    /** Fluent method to run a build.  */
    fun executor(): GradleTaskExecutor {
        return applyOptions(GradleTaskExecutor(this, projectConnection))
    }

    /** Fluent method to get the model.  */
    @Deprecated("Use modelV2()")
    fun model(): ModelBuilder {
        return applyOptions(ModelBuilder(this, projectConnection))
    }

    /** Fluent method to get the model.  */
    fun modelV2(): ModelBuilderV2 {
        return applyOptions(ModelBuilderV2(this, projectConnection)).withPerTestPrefsRoot(true)
    }

    private fun <T : BaseGradleExecutor<T>> applyOptions(executor: T): T {
        for ((option, value) in booleanOptions) {
            executor.with(option, value)
        }

        for (option in booleanOptions.keys) {
            executor.suppressOptionWarning(option)
        }
        return executor
    }

    /**
     * Runs gradle on the project. Throws exception on failure.
     *
     * @param tasks Variadic list of tasks to execute.
     */
    fun execute(vararg tasks: String) {
        _buildResult = executor().run(*tasks)
    }

    fun execute(
        arguments: List<String>,
        vararg tasks: String
    ) {
        _buildResult = executor().withArguments(arguments).run(*tasks)
    }

    fun executeExpectingFailure(vararg tasks: String): GradleConnectionException? {
        return executor().expectFailure().run(*tasks).run {
            _buildResult = this
            exception
        }
    }

    /**
     * Runs gradle on the project, and returns the project model. Throws exception on failure.
     *
     * @param tasks Variadic list of tasks to execute.
     * @return the AndroidProject model for the project.
     */
    fun executeAndReturnModel(vararg tasks: String): ModelContainer<AndroidProject> {
        _buildResult = executor().run(*tasks)
        return model().fetchAndroidProjects()
    }

    /**
     * Runs gradle on the project, and returns the (minimal) output model. Throws exception on
     * failure.
     *
     * @param tasks Variadic list of tasks to execute.
     * @param setupBlock Setup function for the GradleTaskExecutor and ModelBuilder
     * @return the output models for the project as map of output model name (variant name +
     * artifact name) to the associated [BuiltArtifacts]
     */
    @JvmOverloads
    fun executeAndReturnOutputModels(setupBlock: (BaseGradleExecutor<*>) -> Unit = {}, vararg tasks: String): Map<String, BuiltArtifacts> {
        executor().also(setupBlock).run(*tasks)
        val androidProjectModelContainer = model().also(setupBlock).ignoreSyncIssues().fetchAndroidProjects()
        val onlyModel = androidProjectModelContainer.onlyModel
        val mapOfVariantOutputs = ImmutableMap.builder<String, BuiltArtifacts>()
        for (variant in onlyModel.variants) {
            val postModelFile = variant.mainArtifact.assembleTaskOutputListingFile
            val builtArtifacts: BuiltArtifacts? = loadFromFile(
                File(postModelFile)
            )
            if (builtArtifacts != null) {
                mapOfVariantOutputs.put(variant.name, builtArtifacts)
            }
            for (extraAndroidArtifact in variant.extraAndroidArtifacts) {
                val extraModelFile = extraAndroidArtifact.assembleTaskOutputListingFile
                if (!extraModelFile.isEmpty()) {
                    val extraBuiltArtifacts: BuiltArtifacts? =
                        loadFromFile(
                            File(postModelFile),
                        )
                    if (extraBuiltArtifacts != null) {
                        mapOfVariantOutputs.put(
                            variant.name + extraAndroidArtifact.name,
                            extraBuiltArtifacts
                        )
                    }
                }
            }
        }
        return mapOfVariantOutputs.build()
    }

    /**
     * Runs gradle on the project, and returns a project model for each sub-project. Throws
     * exception on failure.
     *
     * @param tasks Variadic list of tasks to execute.
     * @return the AndroidProject model for the project.
     */
    fun executeAndReturnMultiModel(vararg tasks: String): ModelContainer<AndroidProject> {
        _buildResult = executor().run(*tasks)
        return model().fetchAndroidProjects()
    }

    fun setLastBuildResult(lastBuildResult: GradleBuildResult) {
        _buildResult = lastBuildResult
    }

    /**
     * Create a File object. getTestDir will be the base directory if a relative path is supplied.
     *
     * @param path Full path of the file. May be a relative path.
     */
    fun file(path: String): File {
        val result = File(FileUtils.toSystemDependentPath(path))
        return if (result.isAbsolute) {
            result
        } else {
            File(projectDir, path)
        }
    }

    private fun createLocalProp(): File {
        val mainLocalProp = createLocalProp(projectDir)
        for (includedBuild in withIncludedBuilds) {
            createLocalProp(File(projectDir, includedBuild))
        }
        return mainLocalProp
    }

    private fun createLocalProp(destDir: File): File {
        val localProp = ProjectPropertiesWorkingCopy.create(
            destDir.absolutePath, ProjectPropertiesWorkingCopy.PropertyType.LOCAL
        )
        if (withSdk) {
            val androidSdkDir = this.androidSdkDir
                ?: throw RuntimeException("androidHome is null while withSdk is true")
            localProp.setProperty(ProjectProperties.PROPERTY_SDK, androidSdkDir.absolutePath)
        }

        if (withCmakeDirInLocalProp && cmakeVersion != null && cmakeVersion.isNotEmpty()) {
            localProp.setProperty(
                ProjectProperties.PROPERTY_CMAKE,
                getCmakeVersionFolder(cmakeVersion).absolutePath
            )
        }
        ndkSymlinkPath?.let {
            localProp.setProperty(ProjectProperties.PROPERTY_NDK_SYMLINKDIR, it.absolutePath)
        }

        localProp.save()
        return localProp.file as File
    }

    /**
     * Creates settings.gradle unless settings.gradle.kts exists in the same directory.
     */
    private fun createSettingsFile(
        settingsFile: File,
        rootProjectName: String?
    ) {
        var settingsContent = if (settingsFile.exists()) settingsFile.readText() else ""

        if (withPluginManagementBlock) {
            val projectParentDir = projectDir.parent

            settingsContent = """
            pluginManagement { t ->
                apply from: "${File(projectParentDir, "commonLocalRepo.gradle").toURI()}", to: t

                resolutionStrategy {
                    eachPlugin {
                        if(requested.id.namespace == "com.android") {
                            useModule("com.android.tools.build:gradle:$ANDROID_GRADLE_PLUGIN_VERSION")
                        }
                    }
                }
            }

        """.trimIndent() + settingsContent
        }

        if (withDependencyManagementBlock) {
            settingsContent +=
                """

dependencyResolutionManagement {
    RepositoriesMode.PREFER_SETTINGS
    ${generateProjectRepoScript()}
}

                    """.trimIndent()
        }

        settingsContent +=
                """

                apply from: "${File(projectDir.parent, "versionCatalog.gradle").toURI()}"

                """.trimIndent()

        if (gradleBuildCacheDirectory != null) {
            val absoluteFile: File = if (gradleBuildCacheDirectory.isAbsolute)
                gradleBuildCacheDirectory
            else
                File(projectDir, gradleBuildCacheDirectory.path)
            settingsContent +=
                """
buildCache {
    local {
        directory = "${absoluteFile.path.replace("\\", "\\\\")}"
    }
}
"""
        }

        if (rootProjectName != null) {
            settingsContent +=
                    """
                        rootProject.name = "$rootProjectName"
                    """.trimIndent()
        }

        val settingsKtsExist = settingsFile.parentFile.resolve("settings.gradle.kts").exists()

        if (!settingsKtsExist && settingsContent.isNotEmpty()) {
            settingsFile.writeText(settingsContent)
        }
    }

    private fun generateVersionCatalog(): String {
        return """
            dependencyResolutionManagement {
                versionCatalogs {
                    libs {
                        ${generateVersionsForVersionCatalog()}
                    }
                }
            }
        """.trimIndent()
    }

    private fun generateVersionsForVersionCatalog(): String {
        return String.format(
                Locale.US,
                "// Generated by GradleTestProject::generateVersionsForVersionCatalog%n"
                        + "version('buildVersion', '%s')%n"
                        + "version('baseVersion', '%s')%n"
                        + "version('supportLibVersion', '%s')%n"
                        + "version('testSupportLibVersion', '%s')%n"
                        + "version('playServicesVersion', '%s')%n"
                        + "version('supportLibMinSdk', '%d')%n"
                        + "version('ndk19SupportLibMinSdk', '%d')%n"
                        + "version('constraintLayoutVersion', '%s')%n"
                        + "version('buildToolsVersion', '%s')%n"
                        + "version('latestCompileSdk', '%s')%n"
                        + "version('kotlinVersion', '%s')%n"
                        + "version('composeVersion', '%s')%n"
                        + "version('composeCompilerVersion', '%s')%n",
                Version.ANDROID_GRADLE_PLUGIN_VERSION,
                Version.ANDROID_TOOLS_BASE_VERSION,
                SUPPORT_LIB_VERSION,
                TEST_SUPPORT_LIB_VERSION,
                PLAY_SERVICES_VERSION,
                SUPPORT_LIB_MIN_SDK,
                NDK_19_SUPPORT_LIB_MIN_SDK,
                SdkConstants.LATEST_CONSTRAINT_LAYOUT_VERSION,
                DEFAULT_BUILD_TOOL_VERSION,
                compileSdkVersion,
                kotlinVersion,
                TaskManager.COMPOSE_UI_VERSION,
                TaskManager.COMPOSE_KOTLIN_COMPILER_EXTENSION_VERSION,
        )
    }

    private fun createGradleProp() {
        if (gradleProperties.isEmpty()) {
            return
        }

        gradlePropertiesFile.appendText(
            gradleProperties.joinToString(separator = System.lineSeparator(), prefix = System.lineSeparator(), postfix = System.lineSeparator())
        )
    }

    /**
     * Adds `android.useAndroidX=true` to the gradle.properties file (for projects that use AndroidX
     * dependencies, see bug 130286699).
     */
    fun addUseAndroidXProperty() {
        TestFileUtils.appendToFile(
            gradlePropertiesFile,
            BooleanOption.USE_ANDROID_X.propertyName + "=true"
        )
    }

    /**
     * Adds an adb timeout to the root project build file and applies it to all subprojects, so that
     * tests using adb will fail fast when there is no response.
     */
    @JvmOverloads
    fun addAdbTimeout(timeout: Duration = Duration.ofSeconds(30)) {
        TestFileUtils.appendToFile(
                buildFile,
                """
                allprojects { proj ->
                    proj.plugins.withId('com.android.application') {
                        android.adbOptions.timeOutInMs ${timeout.toMillis()}
                    }
                    proj.plugins.withId('com.android.library') {
                        android.adbOptions.timeOutInMs ${timeout.toMillis()}
                    }
                    proj.plugins.withId('com.android.dynamic-feature') {
                        android.adbOptions.timeOutInMs ${timeout.toMillis()}
                    }
                }
                """.trimIndent()
        )
    }

    fun setIncludedProjects(vararg projects: String) {
        // Remove all included projects if exist
        try {
            TestFileUtils.searchAndReplace(
                    settingsFile,
                    "include '",
                    "//include '"
            )
        } catch (e: Throwable) { }

        val includedProjects = projects.joinToString(separator = ",") { "'$it'" }
        settingsFile.appendText("""

            include $includedProjects
        """.trimIndent())
    }
}