-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated STAR demo to support navigating to standard Android #275
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ android { | |
defaultConfig { | ||
minSdk = 28 | ||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
testApplicationId = "com.slack.circuit.star.androidTest" | ||
testApplicationId = "com.slack.circuit.star.apk.androidTest" | ||
} | ||
|
||
testOptions { unitTests.isIncludeAndroidResources = true } | ||
|
@@ -115,7 +115,7 @@ dependencies { | |
testImplementation(libs.androidx.compose.ui.testing.manifest) | ||
testImplementation(libs.leakcanary.android.instrumentation) | ||
|
||
debugImplementation(libs.androidx.compose.ui.testing.manifest) | ||
androidTestImplementation(libs.androidx.compose.ui.testing.manifest) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Without this, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it needs to be present in both? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. By both do you mean unit tests? We were already merging correctly for unit tests |
||
androidTestImplementation(libs.leakcanary.android.instrumentation) | ||
androidTestImplementation(libs.androidx.compose.ui.testing.junit) | ||
androidTestImplementation(libs.junit) | ||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -21,6 +21,7 @@ import androidx.compose.ui.test.assertTextEquals | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import androidx.compose.ui.test.junit4.createAndroidComposeRule | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import androidx.compose.ui.test.onNodeWithTag | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import androidx.compose.ui.test.onNodeWithText | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import androidx.compose.ui.test.performClick | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import androidx.compose.ui.test.performTouchInput | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import androidx.compose.ui.test.swipeUp | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import androidx.test.platform.app.InstrumentationRegistry | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -30,10 +31,13 @@ import com.slack.circuit.CircuitCompositionLocals | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import com.slack.circuit.CircuitConfig | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import com.slack.circuit.star.R | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import com.slack.circuit.star.petdetail.PetDetailTestConstants.ANIMAL_CONTAINER_TAG | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import com.slack.circuit.star.petdetail.PetDetailTestConstants.FULL_BIO_TAG | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import com.slack.circuit.star.petdetail.PetDetailTestConstants.PROGRESS_TAG | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import com.slack.circuit.star.petdetail.PetDetailTestConstants.UNKNOWN_ANIMAL_TAG | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import com.slack.circuit.star.petdetail.PetPhotoCarouselTestConstants.CAROUSEL_TAG | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import com.slack.circuit.star.ui.FakeImageLoader | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import kotlinx.coroutines.channels.Channel | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import kotlinx.coroutines.test.runTest | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import leakcanary.DetectLeaksAfterTestSuccess.Companion.detectLeaksAfterTestSuccessWrapping | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.junit.Before | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import org.junit.Rule | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -93,6 +97,7 @@ class PetDetailTest { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name = "Baxter", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
description = "Grumpy looking Australian Terrier", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tags = listOf("dog", "terrier", "male"), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
eventSink = {} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var carouselScreen: PetPhotoCarouselScreen? = null | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -127,4 +132,37 @@ class PetDetailTest { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@Test | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
fun petDetail_emits_event_when_tapping_on_full_bio_button() = runTest { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
val channel = Channel<Any>(1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
val success = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PetDetailScreen.State.Success( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
url = "url", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
photoUrls = listOf("http://some.url"), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
photoUrlMemoryCacheKey = null, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name = "Baxter", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
description = "Grumpy looking Australian Terrier", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tags = listOf("dog", "terrier", "male"), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
eventSink = channel::trySend | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: why the name There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can't use |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
val circuitConfig = | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CircuitConfig.Builder() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.setOnUnavailableContent { screen -> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PetPhotoCarousel(PetPhotoCarouselScreen.State(screen as PetPhotoCarouselScreen)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.build() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
composeTestRule.run { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
setContent { CircuitCompositionLocals(circuitConfig) { PetDetail(success) } } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
onNodeWithTag(CAROUSEL_TAG).assertIsDisplayed().performTouchInput { swipeUp() } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
onNodeWithTag(FULL_BIO_TAG, true).assertIsDisplayed().performClick() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
val event = channel.receive() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
assertThat(event).isEqualTo(PetDetailScreen.Event.ViewFullBio(success.url)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+158
to
+166
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Out of curiosity why do we do these run blocks?
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All the
Comment on lines
+158
to
+166
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Out of curiosity why do we do these run blocks?
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comment here |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright (C) 2022 Slack Technologies, LLC | ||
* | ||
* 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 | ||
* | ||
* https://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.slack.circuit.star.navigator | ||
|
||
import android.content.Intent | ||
import com.slack.circuit.Navigator | ||
import com.slack.circuit.Screen | ||
import kotlinx.parcelize.Parcelize | ||
|
||
class LegacyNavigator( | ||
private val navigator: Navigator, | ||
private val onAndroidScreen: (AndroidScreen) -> Unit | ||
) : Navigator by navigator { | ||
override fun goTo(screen: Screen) = | ||
when (screen) { | ||
is AndroidScreen -> onAndroidScreen(screen) | ||
else -> navigator.goTo(screen) | ||
} | ||
} | ||
|
||
sealed interface AndroidScreen : Screen { | ||
@Parcelize data class CustomTabsIntentScreen(val url: String) : AndroidScreen | ||
@Parcelize data class IntentScreen(val intent: Intent) : AndroidScreen | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without this, the test suite can't find the test application at runtime