react-native-navigation的迁移库

ContainerRegistry.test.js 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. import _ from 'lodash';
  2. import {AppRegistry, Text} from 'react-native';
  3. import React, {Component} from 'react';
  4. import renderer from 'react-test-renderer';
  5. import * as PropStore from './PropsStore';
  6. class MyContainer extends Component {
  7. render() {
  8. const txt = `Hello, ${_.get(this.props, 'name', 'World')}!`;
  9. return (
  10. <Text>{txt}</Text>
  11. );
  12. }
  13. }
  14. describe('ComponentRegistry', () => {
  15. let uut;
  16. beforeEach(() => {
  17. AppRegistry.registerComponent = jest.fn(AppRegistry.registerComponent);
  18. uut = require('./ContainerRegistry');
  19. });
  20. describe('registerContainer', () => {
  21. function getRegisteredComponentClassFromAppRegistry() {
  22. return AppRegistry.registerComponent.mock.calls[0][1]();
  23. }
  24. function renderRegisteredContainer(props) {
  25. const Container = getRegisteredComponentClassFromAppRegistry();
  26. return renderer.create(
  27. <Container screenId="screen1" {...props}/>
  28. );
  29. }
  30. it('registers container component by containerKey into AppRegistry', () => {
  31. expect(AppRegistry.registerComponent).not.toHaveBeenCalled();
  32. uut.registerContainer('example.MyContainer.key', () => MyContainer);
  33. expect(AppRegistry.registerComponent).toHaveBeenCalledTimes(1);
  34. expect(AppRegistry.registerComponent.mock.calls[0][0]).toEqual('example.MyContainer.key');
  35. });
  36. it('wraps the container', () => {
  37. uut.registerContainer('example.MyContainer', () => MyContainer);
  38. const tree = renderRegisteredContainer();
  39. expect(tree.toJSON().children).toEqual(['Hello, World!']);
  40. });
  41. it('passes props from wrapper into original container', () => {
  42. uut.registerContainer('example.MyContainer', () => MyContainer);
  43. const tree = renderRegisteredContainer({name: 'Daniel'});
  44. expect(tree.toJSON().children).toEqual(['Hello, Daniel!']);
  45. });
  46. it('injects and updates props into original container', () => {
  47. uut.registerContainer('example.MyContainer', () => MyContainer);
  48. const NavigationContainer = getRegisteredComponentClassFromAppRegistry();
  49. class TestParent extends Component { //eslint-disable-line
  50. constructor(props) {
  51. super(props);
  52. this.state = {};
  53. }
  54. render() {
  55. return (
  56. <NavigationContainer screenId="screen1" name={this.state.name}/>
  57. );
  58. }
  59. }
  60. let testParentRef = null;
  61. const tree = renderer.create(
  62. <TestParent ref={(r) => testParentRef = r}/>
  63. );
  64. expect(tree.toJSON().children).toEqual(['Hello, World!']);
  65. testParentRef.setState({name: 'Gandalf'});
  66. expect(tree.toJSON().children).toEqual(['Hello, Gandalf!']);
  67. });
  68. it('asserts has screenId as prop', () => {
  69. uut.registerContainer('example.MyContainer.key', () => MyContainer);
  70. const NavigationContainer = getRegisteredComponentClassFromAppRegistry();
  71. expect(() => {
  72. renderer.create(<NavigationContainer/>);
  73. }).toThrow(new Error('Screen example.MyContainer.key does not have a screenId!'));
  74. });
  75. it('pulls props from the PropsStore and injects them into the inner container', () => {
  76. const props = {myProp: 1, otherProp: 'hello', yetAnotherProp: {a: 2}};
  77. PropStore.setPropsForScreenId('my_screen_1', props);
  78. // TODO
  79. });
  80. });
  81. });