File size: 1,059 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
import {
	CONCIERGE_APPOINTMENT_DETAILS_REQUEST,
	CONCIERGE_APPOINTMENT_DETAILS_UPDATE,
} from 'calypso/state/action-types';
import { appointmentDetails } from '../reducer';

describe( 'concierge/availableTimes/reducer', () => {
	const mockAppointmentDetails = { id: 1, begin_timestamp: 2, end_timestamp: 3 };

	const requestAction = {
		type: CONCIERGE_APPOINTMENT_DETAILS_REQUEST,
	};

	const updateAction = {
		type: CONCIERGE_APPOINTMENT_DETAILS_UPDATE,
		appointmentDetails: mockAppointmentDetails,
	};

	describe( 'appointmentDetails', () => {
		test( 'should be defaulted as null.', () => {
			expect( appointmentDetails( undefined, {} ) ).toBeNull();
		} );

		test( 'should be null on receiving the request action.', () => {
			const state = mockAppointmentDetails;
			expect( appointmentDetails( state, requestAction ) ).toBeNull();
		} );

		test( 'should be the received data on receiving the update action.', () => {
			const state = [];
			expect( appointmentDetails( state, updateAction ) ).toEqual( mockAppointmentDetails );
		} );
	} );
} );