File size: 1,292 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import { getCountryStates, isCountryStatesFetching } from '../selectors';

describe( 'selectors', () => {
	const state = {
		countryStates: {
			items: {
				us: [ { code: 'ca', name: 'California' } ],
			},
			isFetching: {
				us: true,
				ca: false,
			},
		},
	};

	describe( 'getCountryStates()', () => {
		test( 'should return null if the country has no states', () => {
			const states = getCountryStates( state, 'de' );

			expect( states ).toBeNull();
		} );

		test( 'should return the states for the country', () => {
			const states = getCountryStates( state, 'us' );

			expect( states ).toEqual( [ { code: 'ca', name: 'California' } ] );
		} );
	} );

	describe( 'isCountryStatesFetching()', () => {
		test( 'should return false if the country has no states', () => {
			const isRequesting = isCountryStatesFetching( state, 'de' );

			expect( isRequesting ).toBe( false );
		} );

		test( 'should return true if a request is in progress for the site', () => {
			const isRequesting = isCountryStatesFetching( state, 'us' );

			expect( isRequesting ).toBe( true );
		} );

		test( 'should return false if a request has completed for the site', () => {
			const isRequesting = isCountryStatesFetching( state, 'ca' );

			expect( isRequesting ).toBe( false );
		} );
	} );
} );