Skip to content

Commit 961bb9b

Browse files
committed
created lib from condition watcher
1 parent 37ee61d commit 961bb9b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+92
-26
lines changed

.idea/gradle.xml

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

-6
This file was deleted.

conditionwatcher/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

conditionwatcher/build.gradle

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
apply plugin: 'com.android.library'
2+
3+
android {
4+
compileSdkVersion 23
5+
buildToolsVersion "23.0.2"
6+
7+
defaultConfig {
8+
minSdkVersion 15
9+
targetSdkVersion 23
10+
versionCode 1
11+
versionName "1.0"
12+
}
13+
buildTypes {
14+
release {
15+
minifyEnabled false
16+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17+
}
18+
}
19+
}
20+
21+
dependencies {
22+
compile fileTree(dir: 'libs', include: ['*.jar'])
23+
testCompile 'junit:junit:4.12'
24+
}

conditionwatcher/proguard-rules.pro

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in /Users/froger_mcs/Library/Android/sdk/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.azimolabs.conditionwatcher;
2+
3+
import android.app.Application;
4+
import android.test.ApplicationTestCase;
5+
6+
/**
7+
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
8+
*/
9+
public class ApplicationTest extends ApplicationTestCase<Application> {
10+
public ApplicationTest() {
11+
super(Application.class);
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<manifest package="com.azimolabs.conditionwatcher">
2+
3+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.azimolabs.f1sherkk.conditionwatcherexample.conditionWatcher;
1+
package com.azimolabs.conditionwatcher;
22

33
/**
44
* Created by F1sherKK on 08/10/15.
@@ -31,21 +31,19 @@ public static ConditionWatcher getInstance() {
3131
public static void waitForCondition(Instruction instruction) throws Exception {
3232
int status = CONDITION_NOT_MET;
3333
int elapsedTime = 0;
34-
boolean isConditionMet;
3534

3635
do {
37-
isConditionMet = instruction.checkCondition();
38-
if (isConditionMet) {
36+
if (instruction.checkCondition()) {
3937
status = CONDITION_MET;
38+
} else {
39+
elapsedTime += getInstance().watchInterval;
40+
Thread.sleep(getInstance().watchInterval);
4041
}
4142

42-
elapsedTime += getInstance().watchInterval;
43-
Thread.sleep(getInstance().watchInterval);
4443
if (elapsedTime == getInstance().timeoutLimit) {
4544
status = TIMEOUT;
4645
break;
4746
}
48-
4947
} while (status != CONDITION_MET);
5048

5149
if (status == TIMEOUT)
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.azimolabs.f1sherkk.conditionwatcherexample.conditionWatcher;
1+
package com.azimolabs.conditionwatcher;
22

33
import android.os.Bundle;
44

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package com.azimolabs.conditionwatcher;
2+
3+
import org.junit.Test;
4+
5+
import static org.junit.Assert.*;
6+
7+
/**
8+
* To work on unit tests, switch the Test Artifact in the Build Variants view.
9+
*/
10+
public class ExampleUnitTest {
11+
@Test
12+
public void addition_isCorrect() throws Exception {
13+
assertEquals(4, 2 + 2);
14+
}
15+
}

app/.gitignore sample/.gitignore

File renamed without changes.

app/build.gradle sample/build.gradle

+2-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android {
66

77
defaultConfig {
88
applicationId "com.azimolabs.f1sherkk.conditionwatcherexample"
9-
minSdkVersion 16
9+
minSdkVersion 15
1010
targetSdkVersion 23
1111
versionCode 1
1212
versionName "1.0"
@@ -40,7 +40,5 @@ dependencies {
4040
exclude group: 'com.android.support', module: 'support-v4'
4141
}
4242

43-
androidTestCompile "org.mockito:mockito-core:1.10.19"
44-
androidTestCompile "com.google.dexmaker:dexmaker:1.2"
45-
androidTestCompile "com.google.dexmaker:dexmaker-mockito:1.2"
43+
androidTestCompile project(':conditionwatcher')
4644
}
File renamed without changes.

app/src/androidTest/java/com/azimolabs/f1sherkk/conditionwatcherexample/ConditionWatcherExampleTests.java sample/src/androidTest/java/com/azimolabs/f1sherkk/conditionwatcherexample/ConditionWatcherExampleTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import android.support.test.rule.ActivityTestRule;
55
import android.support.test.runner.AndroidJUnit4;
66

7-
import com.azimolabs.f1sherkk.conditionwatcherexample.conditionWatcher.ConditionWatcher;
7+
import com.azimolabs.conditionwatcher.ConditionWatcher;
88
import com.azimolabs.f1sherkk.conditionwatcherexample.data.Server;
99
import com.azimolabs.f1sherkk.conditionwatcherexample.instruction.BtnStartAnimationInstruction;
1010
import com.azimolabs.f1sherkk.conditionwatcherexample.instruction.LoadingDialogInstruction;

app/src/androidTest/java/com/azimolabs/f1sherkk/conditionwatcherexample/instruction/BtnStartAnimationInstruction.java sample/src/androidTest/java/com/azimolabs/f1sherkk/conditionwatcherexample/instruction/BtnStartAnimationInstruction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import android.support.test.InstrumentationRegistry;
55
import android.widget.Button;
66

7+
import com.azimolabs.conditionwatcher.Instruction;
78
import com.azimolabs.f1sherkk.conditionwatcherexample.R;
8-
import com.azimolabs.f1sherkk.conditionwatcherexample.conditionWatcher.Instruction;
99
import com.azimolabs.f1sherkk.conditionwatcherexample.utils.TestApplication;
1010

1111
/**

app/src/androidTest/java/com/azimolabs/f1sherkk/conditionwatcherexample/instruction/LoadingDialogInstruction.java sample/src/androidTest/java/com/azimolabs/f1sherkk/conditionwatcherexample/instruction/LoadingDialogInstruction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import android.app.DialogFragment;
55
import android.support.test.InstrumentationRegistry;
66

7-
import com.azimolabs.f1sherkk.conditionwatcherexample.conditionWatcher.Instruction;
7+
import com.azimolabs.conditionwatcher.Instruction;
88
import com.azimolabs.f1sherkk.conditionwatcherexample.ui.dialog.LoadingDialog;
99
import com.azimolabs.f1sherkk.conditionwatcherexample.utils.TestApplication;
1010

app/src/androidTest/java/com/azimolabs/f1sherkk/conditionwatcherexample/instruction/ServerListLoadingInstruction.java sample/src/androidTest/java/com/azimolabs/f1sherkk/conditionwatcherexample/instruction/ServerListLoadingInstruction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import android.support.test.InstrumentationRegistry;
55
import android.support.v4.widget.SwipeRefreshLayout;
66

7+
import com.azimolabs.conditionwatcher.Instruction;
78
import com.azimolabs.f1sherkk.conditionwatcherexample.R;
8-
import com.azimolabs.f1sherkk.conditionwatcherexample.conditionWatcher.Instruction;
99
import com.azimolabs.f1sherkk.conditionwatcherexample.utils.TestApplication;
1010

1111
/**
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include ':app'
1+
include ':sample', 'conditionwatcher'

0 commit comments

Comments
 (0)