TrashbinActivityIT.kt 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. *
  3. * Nextcloud Android client application
  4. *
  5. * @author Tobias Kaminsky
  6. * Copyright (C) 2020 Tobias Kaminsky
  7. * Copyright (C) 2020 Nextcloud GmbH
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  21. */
  22. package com.owncloud.android.ui.trashbin
  23. import androidx.test.espresso.intent.rule.IntentsTestRule
  24. import com.owncloud.android.AbstractIT
  25. import com.owncloud.android.utils.ScreenshotTest
  26. import org.junit.Rule
  27. import org.junit.Test
  28. class TrashbinActivityIT : AbstractIT() {
  29. enum class TestCase {
  30. ERROR, EMPTY, FILES
  31. }
  32. @get:Rule
  33. var activityRule = IntentsTestRule(TrashbinActivity::class.java, true, false)
  34. @Test
  35. @ScreenshotTest
  36. fun error() {
  37. val sut: TrashbinActivity = activityRule.launchActivity(null)
  38. val trashbinRepository = TrashbinLocalRepository(TestCase.ERROR)
  39. sut.trashbinPresenter = TrashbinPresenter(trashbinRepository, sut)
  40. sut.runOnUiThread { sut.loadFolder() }
  41. shortSleep()
  42. screenshot(sut)
  43. }
  44. @Test
  45. @ScreenshotTest
  46. fun files() {
  47. val sut: TrashbinActivity = activityRule.launchActivity(null)
  48. val trashbinRepository = TrashbinLocalRepository(TestCase.FILES)
  49. sut.trashbinPresenter = TrashbinPresenter(trashbinRepository, sut)
  50. sut.runOnUiThread { sut.loadFolder() }
  51. waitForIdleSync()
  52. shortSleep()
  53. screenshot(sut)
  54. }
  55. @Test
  56. @ScreenshotTest
  57. fun empty() {
  58. val sut: TrashbinActivity = activityRule.launchActivity(null)
  59. val trashbinRepository = TrashbinLocalRepository(TestCase.EMPTY)
  60. sut.trashbinPresenter = TrashbinPresenter(trashbinRepository, sut)
  61. sut.runOnUiThread { sut.loadFolder() }
  62. shortSleep()
  63. screenshot(sut)
  64. }
  65. }