react-native-navigation的迁移库

ScreenStyle.test.js 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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('set Tab Bar badge on a current Tab', async () => {
  41. await elementByLabel('Switch to tab based app').tap();
  42. await elementByLabel('Set Tab Badge').tap();
  43. await expect(element(by.text('TeSt'))).toBeVisible();
  44. });
  45. it('set right buttons', async () => {
  46. await elementByLabel('Push Options Screen').tap();
  47. await expect(elementById('buttonOne')).toBeVisible();
  48. await elementById('buttonOne').tap();
  49. await expect(elementById('buttonTwo')).toBeVisible();
  50. await elementById('buttonTwo').tap();
  51. await expect(elementById('buttonOne')).toBeVisible();
  52. });
  53. it('set left buttons', async () => {
  54. await elementByLabel('Push Options Screen').tap();
  55. await expect(elementById('buttonLeft')).toBeVisible();
  56. });
  57. });