-
Notifications
You must be signed in to change notification settings - Fork 734
SortableList - add driver and test #2568
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import _ from 'lodash'; | ||
import {ComponentDriver} from '../../testkit/Component.driver'; | ||
|
||
/** | ||
* Please run clear after each test | ||
*/ | ||
export class SortableListItemDriver extends ComponentDriver { | ||
dragUp = async (indices: number) => { | ||
this.validateIndices(indices); | ||
const data = _.times(indices, index => { | ||
return { | ||
translationY: -52 * (index + 1) | ||
}; | ||
}); | ||
|
||
await this.uniDriver.selectorByTestId(this.testID).then(driver => driver.drag(data)); | ||
}; | ||
|
||
dragDown = async (indices: number) => { | ||
this.validateIndices(indices); | ||
const data = _.times(indices, index => { | ||
return { | ||
translationY: 52 * (index + 1) | ||
lidord-wix marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}; | ||
}); | ||
|
||
await this.uniDriver.selectorByTestId(this.testID).then(driver => driver.drag(data)); | ||
}; | ||
|
||
private validateIndices = (indices: number) => { | ||
if (indices <= 0 || !Number.isInteger(indices)) { | ||
throw Error('indices must be a positive integer'); | ||
} | ||
}; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
import _ from 'lodash'; | ||
import React, {useCallback} from 'react'; | ||
import Text from '../../text'; | ||
import View from '../../view'; | ||
import SortableList from '../index'; | ||
import {ComponentDriver, SortableListItemDriver} from '../../../testkit'; | ||
|
||
const defaultProps = { | ||
testID: 'sortableList' | ||
}; | ||
|
||
const ITEMS = _.times(5, index => { | ||
return { | ||
text: `${index}`, | ||
id: `${index}` | ||
}; | ||
}); | ||
|
||
const TestCase = props => { | ||
const renderItem = useCallback(({item}) => { | ||
return ( | ||
<Text center testID={`item${item.id}`}> | ||
{item.text} | ||
</Text> | ||
); | ||
}, []); | ||
|
||
return ( | ||
<View flex> | ||
<View flex useSafeArea> | ||
<SortableList data={ITEMS} renderItem={renderItem} {...defaultProps} {...props}/> | ||
</View> | ||
</View> | ||
); | ||
}; | ||
|
||
describe('SortableList', () => { | ||
beforeEach(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
afterEach(() => { | ||
ComponentDriver.clear(); | ||
SortableListItemDriver.clear(); | ||
}); | ||
|
||
it('SortableList onOrderChange is called - down', async () => { | ||
const onOrderChange = jest.fn(); | ||
const component = <TestCase onOrderChange={onOrderChange}/>; | ||
const sortableListDriver = new ComponentDriver({component, testID: 'sortableList'}); | ||
expect(await sortableListDriver.exists()).toBeTruthy(); | ||
expect(onOrderChange).toHaveBeenCalledTimes(0); | ||
const item1Driver = new SortableListItemDriver({component, testID: 'item1'}); | ||
expect(await item1Driver.exists()).toBeTruthy(); | ||
await item1Driver.dragDown(1); | ||
expect(onOrderChange).toHaveBeenCalledTimes(1); | ||
expect(onOrderChange).toHaveBeenCalledWith([ | ||
{id: '0', text: '0'}, | ||
{id: '2', text: '2'}, | ||
{id: '1', text: '1'}, | ||
{id: '3', text: '3'}, | ||
{id: '4', text: '4'} | ||
]); | ||
}); | ||
|
||
it('SortableList onOrderChange is called - up', async () => { | ||
const onOrderChange = jest.fn(); | ||
const component = <TestCase onOrderChange={onOrderChange}/>; | ||
const sortableListDriver = new ComponentDriver({component, testID: 'sortableList'}); | ||
expect(await sortableListDriver.exists()).toBeTruthy(); | ||
expect(onOrderChange).toHaveBeenCalledTimes(0); | ||
const item4Driver = new SortableListItemDriver({component, testID: 'item4'}); | ||
expect(await item4Driver.exists()).toBeTruthy(); | ||
await item4Driver.dragUp(3); | ||
expect(onOrderChange).toHaveBeenCalledTimes(1); | ||
expect(onOrderChange).toHaveBeenCalledWith([ | ||
{id: '0', text: '0'}, | ||
{id: '4', text: '4'}, | ||
{id: '1', text: '1'}, | ||
{id: '2', text: '2'}, | ||
{id: '3', text: '3'} | ||
]); | ||
}); | ||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.