Skip to content

Commit 1118236

Browse files
committed
test: added module for check recompilation of test app
1 parent ef8a685 commit 1118236

File tree

6 files changed

+91
-0
lines changed

6 files changed

+91
-0
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "jadx-test-app/test-app"]
2+
path = jadx-test-app/test-app
3+
url = git://github.com/skylot/jadx-test-app.git

build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ task dist(dependsOn: pack) {
9393
task samples(dependsOn: 'jadx-samples:samples') {
9494
}
9595

96+
task testAppCheck(dependsOn: 'jadx-test-app:testAppCheck') {
97+
}
98+
9699
task pitest(overwrite: true, dependsOn: 'jadx-core:pitest') {
97100
}
98101

jadx-test-app/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
### Run jadx on test android application
2+
3+
This module contains build scripts for test recompilation of simple android app from:
4+
https://github.com/skylot/jadx-test-app
5+
6+
For run tests type follow commands in jadx root directory:
7+
8+
```java
9+
git submodule init
10+
git submodule update
11+
./gradlew testAppCheck
12+
```
13+
14+
Note: You will need connected device or emulator for success

jadx-test-app/build.gradle

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
project.ext {
2+
testAppDir = 'test-app'
3+
testAppTmpDir = 'test-app-tmp'
4+
5+
buildFile = "${testAppTmpDir}/build.gradle"
6+
apkFile = "${testAppTmpDir}/build/outputs/apk/test-app-tmp-debug.apk"
7+
outSrcDir = "${testAppTmpDir}/src/main/java"
8+
outResDir = "${testAppTmpDir}/src/main"
9+
checkTask = 'connectedCheck'
10+
}
11+
12+
dependencies {
13+
compile(project(":jadx-cli"))
14+
}
15+
16+
sonarRunner {
17+
skipProject = true
18+
}
19+
20+
task deleteTmp(type:Delete) {
21+
delete testAppTmpDir
22+
}
23+
24+
task copyApp(type:Copy, dependsOn: deleteTmp) {
25+
from testAppDir
26+
into testAppTmpDir
27+
}
28+
29+
task buildApp(type:Exec, dependsOn: copyApp) {
30+
workingDir testAppTmpDir
31+
commandLine "./gradlew clean build ${checkTask}".split(' ')
32+
}
33+
34+
task removeSource(type:Delete, dependsOn: buildApp) {
35+
delete "${outResDir}/**"
36+
}
37+
38+
task runJadxSrc(type: JavaExec, dependsOn: removeSource) {
39+
classpath = sourceSets.main.output + configurations.compile
40+
main = project(':jadx-cli').mainClassName
41+
args = ['-d', outSrcDir, '-r', apkFile, '-v']
42+
}
43+
44+
task runJadxResources(type: JavaExec, dependsOn: runJadxSrc) {
45+
classpath = sourceSets.main.output + configurations.compile
46+
main = project(':jadx-cli').mainClassName
47+
args = ['-d', outResDir, '-s', apkFile, '-v']
48+
}
49+
50+
task decompile(type:Delete, dependsOn: runJadxResources) {
51+
delete "${outSrcDir}/com/github/skylot/jadx/testapp/BuildConfig.java"
52+
delete "${outSrcDir}/com/github/skylot/jadx/testapp/R.java"
53+
}
54+
55+
task runChecks(type:Exec, dependsOn: decompile) {
56+
workingDir testAppTmpDir
57+
commandLine "./gradlew clean build ${checkTask}".split(' ')
58+
}
59+
60+
task testAppCheck(dependsOn: runChecks) {
61+
doFirst {
62+
def buildFile = file(buildFile)
63+
if (!buildFile.exists() || !buildFile.isFile()) {
64+
throw new StopExecutionException("Test app not found")
65+
}
66+
}
67+
}
68+
69+
clean.dependsOn deleteTmp

jadx-test-app/test-app

Submodule test-app added at 2f34a77

settings.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ include 'jadx-core'
44
include 'jadx-cli'
55
include 'jadx-gui'
66
include 'jadx-samples'
7+
include 'jadx-test-app'

0 commit comments

Comments
 (0)