react-native-navigation的迁移库

ScreenStyle.test.js 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. const Utils = require('./Utils');
  2. const { elementByLabel, elementById } = Utils;
  3. describe('screen style', () => {
  4. beforeEach(async () => {
  5. await device.relaunchApp();
  6. });
  7. it('declare a navigationOptions on container component', async () => {
  8. await elementByLabel('Push Options Screen').tap();
  9. await expect(element(by.label('Static Title').and(by.type('UILabel')))).toBeVisible();
  10. });
  11. it('change title on container component', async () => {
  12. await elementByLabel('Push Options Screen').tap();
  13. await expect(element(by.label('Static Title').and(by.type('UILabel')))).toBeVisible();
  14. await elementByLabel('Dynamic Options').tap();
  15. await expect(element(by.label('Dynamic Title').and(by.type('UILabel')))).toBeVisible();
  16. });
  17. it('set dynamic options with valid options will do something and not crash', async () => {
  18. // we have no way of testing individual styles for the screen
  19. await elementByLabel('Push Options Screen').tap();
  20. await elementByLabel('Dynamic Options').tap();
  21. await expect(element(by.label('Options Screen'))).toBeVisible();
  22. });
  23. it('hides Tab Bar when pressing on Hide Top Bar and shows it when pressing on Show Top Bar', async () => {
  24. await elementByLabel('Push Options Screen').tap();
  25. await elementByLabel('Hide Top Bar').tap();
  26. await expect(element(by.type('UINavigationBar'))).toBeNotVisible();
  27. await elementByLabel('Show Top Bar').tap();
  28. await expect(element(by.type('UINavigationBar'))).toBeVisible();
  29. });
  30. it('hides topBar onScroll down and shows it on scroll up', async () => {
  31. await elementByLabel('Push Options Screen').tap();
  32. await elementByLabel('scrollView Screen').tap();
  33. await elementByLabel('Toggle Top Bar Hide On Scroll').tap();
  34. await expect(element(by.type('UINavigationBar'))).toBeVisible();
  35. await element(by.id('scrollView')).swipe('up', 'fast');
  36. await expect(element(by.type('UINavigationBar'))).toBeNotVisible();
  37. await element(by.id('scrollView')).swipe('down', 'fast');
  38. await expect(element(by.type('UINavigationBar'))).toBeVisible();
  39. });
  40. it('makes topBar transparent and opaque', async () => {
  41. await elementByLabel('Push Options Screen').tap();
  42. await elementByLabel('Top Bar Transparent').tap();
  43. await expect(element(by.type('_UIVisualEffectBackdropView'))).toBeNotVisible();
  44. await elementByLabel('Top Bar Opaque').tap();
  45. await expect(element(by.type('_UIVisualEffectBackdropView')).atIndex(1)).toBeVisible();
  46. });
  47. it('set Tab Bar badge on a current Tab', async () => {
  48. await elementByLabel('Switch to tab based app').tap();
  49. await elementByLabel('Set Tab Badge').tap();
  50. await expect(element(by.text('TeSt'))).toBeVisible();
  51. });
  52. it('set right buttons', async () => {
  53. await elementByLabel('Push Options Screen').tap();
  54. await expect(elementById('buttonOne')).toBeVisible();
  55. await elementById('buttonOne').tap();
  56. await expect(elementById('buttonTwo')).toBeVisible();
  57. await elementById('buttonTwo').tap();
  58. await expect(elementById('buttonOne')).toBeVisible();
  59. });
  60. it('set left buttons', async () => {
  61. await elementByLabel('Push Options Screen').tap();
  62. await expect(elementById('buttonLeft')).toBeVisible();
  63. });
  64. });