Skip to content
This repository was archived by the owner on Dec 11, 2024. It is now read-only.

Commit 1d23ebc

Browse files
committed
Move testing codelab into its own repository.
Change-Id: I1561d65c5d663fdeb0ddae0e85199a895ecb2207
1 parent b1f4d54 commit 1d23ebc

Some content is hidden

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

51 files changed

+1903
-0
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.idea
2+
*.iml
3+
local.properties
4+
build
5+
.gradle
6+
# Eclipse project files
7+
.project
8+
.settings/
9+
.classpath

app/.gitignore

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

app/build.gradle

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion rootProject.ext.compileSdkVersion
5+
buildToolsVersion rootProject.ext.buildToolsVersion
6+
7+
defaultConfig {
8+
applicationId "com.example.android.testing.notes"
9+
minSdkVersion rootProject.ext.minSdkVersion
10+
targetSdkVersion rootProject.ext.targetSdkVersion
11+
versionCode 1
12+
versionName "1.0"
13+
14+
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
15+
}
16+
17+
// Always show the result of every unit test, even if it passes.
18+
testOptions.unitTests.all {
19+
testLogging {
20+
events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
21+
}
22+
}
23+
}
24+
25+
/*
26+
Dependency versions are defined in the top level build.gradle file. This helps keeping track of
27+
all versions in a single place. This improves readability and helps managing project complexity.
28+
*/
29+
dependencies {
30+
// App's dependencies, including test
31+
compile "com.android.support:appcompat-v7:$rootProject.supportLibraryVersion"
32+
compile "com.android.support:cardview-v7:$rootProject.supportLibraryVersion"
33+
compile "com.android.support:design:$rootProject.supportLibraryVersion"
34+
compile "com.android.support:recyclerview-v7:$rootProject.supportLibraryVersion"
35+
compile "com.android.support:support-v4:$rootProject.supportLibraryVersion"
36+
compile "com.google.guava:guava:$rootProject.guavaVersion"
37+
38+
// Dependencies for local unit tests
39+
testCompile "junit:junit:$rootProject.ext.junitVersion"
40+
testCompile "org.mockito:mockito-all:$rootProject.ext.mocktioVersion"
41+
testCompile "org.hamcrest:hamcrest-all:$rootProject.ext.hamcrestVersion"
42+
43+
// Android Testing Support Library's runner and rules
44+
androidTestCompile "com.android.support.test:runner:$rootProject.ext.runnerVersion"
45+
androidTestCompile "com.android.support.test:rules:$rootProject.ext.runnerVersion"
46+
47+
// Espresso UI Testing
48+
androidTestCompile "com.android.support.test.espresso:espresso-core:$rootProject.ext.espressoVersion"
49+
androidTestCompile ("com.android.support.test.espresso:espresso-contrib:$rootProject.ext.espressoVersion") {
50+
// TODO talk to the tools team and figure out what the hell is going on here. https://github.com/googlesamples/android-testing/pull/55
51+
exclude module: 'recyclerview-v7'
52+
}
53+
androidTestCompile "com.android.support.test.espresso:espresso-intents:$rootProject.ext.espressoVersion"
54+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
/*
2+
* Copyright 2015, The Android Open Source Project
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package com.example.android.testing.notes;
18+
19+
import android.support.test.rule.ActivityTestRule;
20+
import android.support.test.runner.AndroidJUnit4;
21+
import android.test.suitebuilder.annotation.LargeTest;
22+
23+
import com.example.android.testing.notes.model.NoteRepositories;
24+
import com.example.android.testing.notes.stub.FakeNotesServiceApi;
25+
26+
import org.junit.Rule;
27+
import org.junit.Test;
28+
import org.junit.runner.RunWith;
29+
30+
import static android.support.test.espresso.Espresso.onView;
31+
import static android.support.test.espresso.action.ViewActions.click;
32+
import static android.support.test.espresso.assertion.ViewAssertions.matches;
33+
import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed;
34+
import static android.support.test.espresso.matcher.ViewMatchers.withId;
35+
36+
@RunWith(AndroidJUnit4.class)
37+
@LargeTest
38+
public class NotesActivityTest {
39+
40+
@Rule
41+
public ActivityTestRule<NotesActivity> mNotesActivityTestRule =
42+
new ActivityTestRule<NotesActivity>(NotesActivity.class) {
43+
44+
@Override
45+
protected void beforeActivityLaunched() {
46+
// TODO this is kinda messed up refactor code to make for a cleaner Service API
47+
// injection or use dagger
48+
NoteRepositories.getInMemoryRepoInstance(new FakeNotesServiceApi());
49+
}
50+
};
51+
52+
@Test
53+
public void clickAddNoteButton_opensAddNoteFragment() throws Exception {
54+
onView(withId(R.id.fab_add_note)).perform(click());
55+
onView(withId(R.id.fab_done)).check(matches(isDisplayed()));
56+
}
57+
58+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*
2+
* Copyright 2015, The Android Open Source Project
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package com.example.android.testing.notes.stub;
18+
19+
import android.support.v4.util.ArrayMap;
20+
21+
import com.example.android.testing.notes.model.Note;
22+
import com.example.android.testing.notes.model.NotesServiceApi;
23+
24+
import java.util.ArrayList;
25+
import java.util.List;
26+
27+
public class FakeNotesServiceApi implements NotesServiceApi {
28+
29+
// TODO replace this with a new test specific data set.
30+
private static final ArrayMap NOTES_SERVICE_DATA = new ArrayMap();
31+
32+
public List<Note> getAllNotes() {
33+
return new ArrayList<>(NOTES_SERVICE_DATA.values());
34+
}
35+
}

app/src/main/AndroidManifest.xml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.example.android.testing.notes" >
4+
5+
<application
6+
android:icon="@mipmap/ic_launcher"
7+
android:label="@string/app_name"
8+
android:supportsRtl="true"
9+
android:theme="@style/AppTheme" >
10+
<activity android:name=".NotesActivity" >
11+
<intent-filter>
12+
<action android:name="android.intent.action.MAIN" />
13+
14+
<category android:name="android.intent.category.LAUNCHER" />
15+
</intent-filter>
16+
</activity>
17+
</application>
18+
19+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
/*
2+
* Copyright (C) 2015 The Android Open Source Project
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package com.example.android.testing.notes;
18+
19+
import com.example.android.testing.notes.util.ActivityUtils;
20+
import com.example.android.testing.notes.view.AddNoteFragment;
21+
import com.example.android.testing.notes.view.NotesFragment;
22+
23+
import android.os.Bundle;
24+
import android.support.design.widget.NavigationView;
25+
import android.support.v4.app.Fragment;
26+
import android.support.v4.app.FragmentManager;
27+
import android.support.v4.app.FragmentTransaction;
28+
import android.support.v4.view.GravityCompat;
29+
import android.support.v4.widget.DrawerLayout;
30+
import android.support.v7.app.ActionBar;
31+
import android.support.v7.app.AppCompatActivity;
32+
import android.support.v7.widget.Toolbar;
33+
import android.view.MenuItem;
34+
import android.widget.Toast;
35+
36+
public class NotesActivity extends AppCompatActivity {
37+
38+
private DrawerLayout mDrawerLayout;
39+
40+
@Override
41+
protected void onCreate(Bundle savedInstanceState) {
42+
super.onCreate(savedInstanceState);
43+
setContentView(R.layout.activity_notes);
44+
45+
initFragment(NotesFragment.newInstance());
46+
47+
// TODO create a presenter and view for this logic and wire it up (Toolbar + Drawer)
48+
// + write unit and UI tests.
49+
// Set up the toolbar.
50+
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
51+
setSupportActionBar(toolbar);
52+
final ActionBar ab = getSupportActionBar();
53+
ab.setHomeAsUpIndicator(R.drawable.ic_menu);
54+
ab.setDisplayHomeAsUpEnabled(true);
55+
56+
// Set up the navigation drawer.
57+
mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
58+
mDrawerLayout.setStatusBarBackground(R.color.colorPrimaryDark);
59+
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
60+
if (navigationView != null) {
61+
setupDrawerContent(navigationView);
62+
}
63+
64+
}
65+
66+
private void initFragment(Fragment notesFragment) {
67+
// Add the NotesView to the layout
68+
FragmentManager fragmentManager = getSupportFragmentManager();
69+
FragmentTransaction transaction = fragmentManager.beginTransaction();
70+
transaction.add(R.id.contentFrame, notesFragment);
71+
transaction.commit();
72+
}
73+
74+
@Override
75+
public boolean onOptionsItemSelected(MenuItem item) {
76+
switch (item.getItemId()) {
77+
case android.R.id.home:
78+
// Open the navigation drawer when the home icon is selected from the toolbar.
79+
mDrawerLayout.openDrawer(GravityCompat.START);
80+
return true;
81+
}
82+
return super.onOptionsItemSelected(item);
83+
}
84+
85+
private void setupDrawerContent(NavigationView navigationView) {
86+
navigationView.setNavigationItemSelectedListener(
87+
new NavigationView.OnNavigationItemSelectedListener() {
88+
@Override
89+
public boolean onNavigationItemSelected(MenuItem menuItem) {
90+
switch (menuItem.getItemId()) {
91+
// TODO figure out what we want to do for the drawer
92+
case R.id.drawer_home:
93+
Toast.makeText(NotesActivity.this, "Notes", Toast.LENGTH_SHORT)
94+
.show();
95+
break;
96+
case R.id.drawer_statistics:
97+
Toast.makeText(NotesActivity.this, "Statistics", Toast.LENGTH_SHORT)
98+
.show();
99+
break;
100+
}
101+
// Close the navigation drawer when an item is selected.
102+
menuItem.setChecked(true);
103+
mDrawerLayout.closeDrawers();
104+
return true;
105+
}
106+
});
107+
}
108+
109+
public void showAddNoteFragment() {
110+
ActivityUtils.showFragment(getSupportFragmentManager(), R.id.contentFrame,
111+
AddNoteFragment.newInstance(), true);
112+
}
113+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* Copyright 2015, The Android Open Source Project
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package com.example.android.testing.notes.model;
18+
19+
import android.support.annotation.NonNull;
20+
21+
import java.util.List;
22+
23+
import static com.google.common.base.Preconditions.checkNotNull;
24+
25+
/**
26+
* Concrete implementation to load notes from the a data source.
27+
*/
28+
public class InMemoryNotesRepository implements NotesRepository {
29+
30+
private final NotesServiceApi mNotesServiceApi;
31+
32+
public InMemoryNotesRepository(@NonNull NotesServiceApi notesServiceApi) {
33+
mNotesServiceApi = checkNotNull(notesServiceApi);
34+
}
35+
36+
@Override
37+
public List<Note> getNotes() {
38+
return mNotesServiceApi.getAllNotes();
39+
}
40+
}

0 commit comments

Comments
 (0)