-
Notifications
You must be signed in to change notification settings - Fork 759
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
fixed allscreens sanity test for enabled app layout flag #7020
Changes from 2 commits
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 |
---|---|---|
|
@@ -84,33 +84,56 @@ class ElementRobot { | |
} | ||
|
||
fun settings(shouldGoBack: Boolean = true, block: SettingsRobot.() -> Unit) { | ||
openDrawer() | ||
clickOn(R.id.homeDrawerHeaderSettingsView) | ||
if (features.isNewAppLayoutEnabled()) { | ||
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. Thanks for supporting both mode. |
||
onView(withId((R.id.avatar))).perform(click()) | ||
} else { | ||
openDrawer() | ||
clickOn(R.id.homeDrawerHeaderSettingsView) | ||
} | ||
|
||
block(SettingsRobot()) | ||
if (shouldGoBack) pressBack() | ||
waitUntilViewVisible(withId(R.id.roomListContainer)) | ||
} | ||
|
||
fun newDirectMessage(block: NewDirectMessageRobot.() -> Unit) { | ||
clickOn(R.id.bottom_action_people) | ||
clickOn(R.id.createChatRoomButton) | ||
if (features.isNewAppLayoutEnabled()) { | ||
clickOn(R.id.newLayoutCreateChatButton) | ||
waitUntilDialogVisible(withId(R.id.start_chat)) | ||
clickOn(R.id.start_chat) | ||
} else { | ||
clickOn(R.id.bottom_action_people) | ||
clickOn(R.id.createChatRoomButton) | ||
} | ||
|
||
waitUntilActivityVisible<CreateDirectRoomActivity> { | ||
waitUntilViewVisible(withId(R.id.userListSearch)) | ||
} | ||
closeSoftKeyboard() | ||
block(NewDirectMessageRobot()) | ||
pressBack() | ||
if (features.isNewAppLayoutEnabled()) { | ||
pressBack() // close create dialog | ||
} | ||
waitUntilViewVisible(withId(R.id.roomListContainer)) | ||
} | ||
|
||
fun newRoom(block: NewRoomRobot.() -> Unit) { | ||
clickOn(R.id.bottom_action_rooms) | ||
if (!features.isNewAppLayoutEnabled()) { | ||
clickOn(R.id.bottom_action_rooms) | ||
} | ||
RoomListRobot().newRoom { block() } | ||
if (features.isNewAppLayoutEnabled()) { | ||
pressBack() // close create dialog | ||
} | ||
waitUntilViewVisible(withId(R.id.roomListContainer)) | ||
} | ||
|
||
fun roomList(block: RoomListRobot.() -> Unit) { | ||
clickOn(R.id.bottom_action_rooms) | ||
if (!features.isNewAppLayoutEnabled()) { | ||
clickOn(R.id.bottom_action_rooms) | ||
} | ||
|
||
block(RoomListRobot()) | ||
waitUntilViewVisible(withId(R.id.roomListContainer)) | ||
} | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -21,13 +21,19 @@ import androidx.test.espresso.matcher.ViewMatchers.withId | |||||
import com.adevinta.android.barista.interaction.BaristaClickInteractions.clickOn | ||||||
import im.vector.app.R | ||||||
import im.vector.app.espresso.tools.waitUntilViewVisible | ||||||
import im.vector.app.features.DefaultVectorFeatures | ||||||
import im.vector.app.features.VectorFeatures | ||||||
|
||||||
class NewRoomRobot( | ||||||
var createdRoom: Boolean = false | ||||||
) { | ||||||
|
||||||
var features: VectorFeatures = DefaultVectorFeatures() | ||||||
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.
Suggested change
|
||||||
|
||||||
fun createNewRoom(block: CreateNewRoomRobot.() -> Unit) { | ||||||
clickOn(R.string.create_new_room) | ||||||
if (features.isNewAppLayoutEnabled()) { | ||||||
clickOn(R.string.create_new_room) | ||||||
} | ||||||
waitUntilViewVisible(withId(R.id.createRoomForm)) | ||||||
val createNewRoomRobot = CreateNewRoomRobot() | ||||||
block(createNewRoomRobot) | ||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -27,10 +27,15 @@ import com.adevinta.android.barista.assertion.BaristaVisibilityAssertions | |||||
import com.adevinta.android.barista.interaction.BaristaClickInteractions.clickOn | ||||||
import im.vector.app.R | ||||||
import im.vector.app.espresso.tools.waitUntilActivityVisible | ||||||
import im.vector.app.espresso.tools.waitUntilDialogVisible | ||||||
import im.vector.app.features.DefaultVectorFeatures | ||||||
import im.vector.app.features.VectorFeatures | ||||||
import im.vector.app.features.roomdirectory.RoomDirectoryActivity | ||||||
|
||||||
class RoomListRobot { | ||||||
|
||||||
var features: VectorFeatures = DefaultVectorFeatures() | ||||||
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.
Suggested change
|
||||||
|
||||||
fun openRoom(roomName: String, block: RoomDetailRobot.() -> Unit) { | ||||||
clickOn(roomName) | ||||||
block(RoomDetailRobot()) | ||||||
|
@@ -49,9 +54,15 @@ class RoomListRobot { | |||||
} | ||||||
|
||||||
fun newRoom(block: NewRoomRobot.() -> Unit) { | ||||||
clickOn(R.id.createGroupRoomButton) | ||||||
waitUntilActivityVisible<RoomDirectoryActivity> { | ||||||
BaristaVisibilityAssertions.assertDisplayed(R.id.publicRoomsList) | ||||||
if (features.isNewAppLayoutEnabled()) { | ||||||
clickOn(R.id.newLayoutCreateChatButton) | ||||||
waitUntilDialogVisible(ViewMatchers.withId(R.id.create_room)) | ||||||
clickOn(R.id.create_room) | ||||||
} else { | ||||||
clickOn(R.id.createGroupRoomButton) | ||||||
waitUntilActivityVisible<RoomDirectoryActivity> { | ||||||
BaristaVisibilityAssertions.assertDisplayed(R.id.publicRoomsList) | ||||||
} | ||||||
} | ||||||
val newRoomRobot = NewRoomRobot() | ||||||
block(newRoomRobot) | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ import im.vector.app.espresso.tools.waitUntilActivityVisible | |
import im.vector.app.espresso.tools.waitUntilDialogVisible | ||
import im.vector.app.espresso.tools.waitUntilViewVisible | ||
import im.vector.app.features.home.HomeActivity | ||
import im.vector.app.features.home.room.detail.RoomDetailActivity | ||
import im.vector.app.features.spaces.manage.SpaceManageActivity | ||
|
||
class SpaceCreateRobot { | ||
|
@@ -85,7 +86,9 @@ class SpaceCreateRobot { | |
clickOn(R.id.nextButton) | ||
waitUntilViewVisible(withId(R.id.recyclerView)) | ||
clickOn(R.id.nextButton) | ||
waitUntilDialogVisible(withId(R.id.inviteByMxidButton)) | ||
waitUntilActivityVisible<RoomDetailActivity> { | ||
waitUntilDialogVisible(withId(R.id.inviteByMxidButton)) | ||
} | ||
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. Just to double check, is it OK that the change is not under 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. Yes, no matter of flag enabled/disabled that was failing for me locally without this change |
||
// close invite dialog | ||
pressBack() | ||
waitUntilViewVisible(withId(R.id.timelineRecyclerView)) | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -18,6 +18,8 @@ package im.vector.app.ui.robot.space | |||||
|
||||||
import androidx.recyclerview.widget.RecyclerView | ||||||
import androidx.test.espresso.Espresso | ||||||
import androidx.test.espresso.action.ViewActions.click | ||||||
import androidx.test.espresso.action.ViewActions.longClick | ||||||
import androidx.test.espresso.contrib.RecyclerViewActions | ||||||
import androidx.test.espresso.matcher.ViewMatchers | ||||||
import com.adevinta.android.barista.interaction.BaristaClickInteractions.clickOn | ||||||
|
@@ -26,18 +28,44 @@ import com.adevinta.android.barista.internal.viewaction.ClickChildAction | |||||
import im.vector.app.R | ||||||
import im.vector.app.espresso.tools.waitUntilDialogVisible | ||||||
import im.vector.app.espresso.tools.waitUntilViewVisible | ||||||
import im.vector.app.features.DefaultVectorFeatures | ||||||
import im.vector.app.features.VectorFeatures | ||||||
import org.hamcrest.Matchers | ||||||
|
||||||
class SpaceRobot { | ||||||
|
||||||
fun createSpace(block: SpaceCreateRobot.() -> Unit) { | ||||||
openDrawer() | ||||||
clickOn(R.string.create_space) | ||||||
var features: VectorFeatures = DefaultVectorFeatures() | ||||||
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.
Suggested change
|
||||||
|
||||||
fun createSpace(isFirstSpace: Boolean, block: SpaceCreateRobot.() -> Unit) { | ||||||
if (features.isNewAppLayoutEnabled()) { | ||||||
clickOn(R.id.newLayoutOpenSpacesButton) | ||||||
if (isFirstSpace) { | ||||||
waitUntilDialogVisible(ViewMatchers.withId(R.id.spaces_empty_group)) | ||||||
clickOn(R.id.spaces_empty_button) | ||||||
} else { | ||||||
waitUntilDialogVisible(ViewMatchers.withId(R.id.groupListView)) | ||||||
Espresso.onView(ViewMatchers.withId(R.id.groupListView)) | ||||||
.perform( | ||||||
RecyclerViewActions.actionOnItem<RecyclerView.ViewHolder>( | ||||||
ViewMatchers.hasDescendant(ViewMatchers.withId(R.id.plus)), | ||||||
click() | ||||||
).atPosition(0) | ||||||
) | ||||||
} | ||||||
} else { | ||||||
openDrawer() | ||||||
clickOn(R.string.create_space) | ||||||
} | ||||||
block(SpaceCreateRobot()) | ||||||
} | ||||||
|
||||||
fun spaceMenu(spaceName: String, block: SpaceMenuRobot.() -> Unit) { | ||||||
openDrawer() | ||||||
if (features.isNewAppLayoutEnabled()) { | ||||||
clickOn(R.id.newLayoutOpenSpacesButton) | ||||||
waitUntilDialogVisible(ViewMatchers.withId(R.id.groupListView)) | ||||||
} else { | ||||||
openDrawer() | ||||||
} | ||||||
with(SpaceMenuRobot()) { | ||||||
openMenu(spaceName) | ||||||
block() | ||||||
|
@@ -46,19 +74,32 @@ class SpaceRobot { | |||||
|
||||||
fun openMenu(spaceName: String) { | ||||||
waitUntilViewVisible(ViewMatchers.withId(R.id.groupListView)) | ||||||
Espresso.onView(ViewMatchers.withId(R.id.groupListView)) | ||||||
.perform( | ||||||
RecyclerViewActions.actionOnItem<RecyclerView.ViewHolder>( | ||||||
ViewMatchers.hasDescendant(Matchers.allOf(ViewMatchers.withId(R.id.groupNameView), ViewMatchers.withText(spaceName))), | ||||||
ClickChildAction.clickChildWithId(R.id.groupTmpLeave) | ||||||
).atPosition(0) | ||||||
) | ||||||
if (features.isNewAppLayoutEnabled()) { | ||||||
Espresso.onView(ViewMatchers.withId(R.id.groupListView)) | ||||||
.perform( | ||||||
RecyclerViewActions.actionOnItem<RecyclerView.ViewHolder>( | ||||||
ViewMatchers.hasDescendant(Matchers.allOf(ViewMatchers.withId(R.id.name), ViewMatchers.withText(spaceName))), | ||||||
longClick() | ||||||
).atPosition(0) | ||||||
) | ||||||
} else { | ||||||
Espresso.onView(ViewMatchers.withId(R.id.groupListView)) | ||||||
.perform( | ||||||
RecyclerViewActions.actionOnItem<RecyclerView.ViewHolder>( | ||||||
ViewMatchers.hasDescendant(Matchers.allOf(ViewMatchers.withId(R.id.groupNameView), ViewMatchers.withText(spaceName))), | ||||||
ClickChildAction.clickChildWithId(R.id.groupTmpLeave) | ||||||
).atPosition(0) | ||||||
) | ||||||
} | ||||||
|
||||||
waitUntilDialogVisible(ViewMatchers.withId(R.id.spaceNameView)) | ||||||
} | ||||||
|
||||||
fun selectSpace(spaceName: String) { | ||||||
openDrawer() | ||||||
waitUntilViewVisible(ViewMatchers.withId(R.id.groupListView)) | ||||||
if (!features.isNewAppLayoutEnabled()) { | ||||||
openDrawer() | ||||||
waitUntilViewVisible(ViewMatchers.withId(R.id.groupListView)) | ||||||
} | ||||||
clickOn(spaceName) | ||||||
} | ||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
android:id="@+id/groupListView" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:minHeight="195dp" | ||
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. when animation are disabled (for ui tests) for some reason dialog is not properly measure in 50% chances. This min height is the sum of height of 3 items in list and this is minimal amount of items to be shown for non-empty staye (all chat, 1 space, create space) 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. Strange. Thanks for explaining. |
||
android:overScrollMode="always" | ||
tools:listitem="@layout/item_space" /> | ||
|
||
|
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.
Optional: Could add named parameter to make it clearer