12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- import {getRepositories} from 'sentry/actionCreators/repositories';
- import RepositoryStore from 'sentry/stores/repositoryStore';
- describe('RepositoryActionCreator', function () {
- const orgSlug = 'myOrg';
- const repoUrl = `/organizations/${orgSlug}/repos/`;
- const api = new MockApiClient();
- const mockData = [{id: '1'}];
- let mockResponse;
- beforeEach(() => {
- MockApiClient.clearMockResponses();
- mockResponse = MockApiClient.addMockResponse({
- url: repoUrl,
- body: mockData,
- });
- RepositoryStore.resetRepositories();
- jest.restoreAllMocks();
- jest.spyOn(RepositoryStore, 'loadRepositories');
- jest.spyOn(RepositoryStore, 'loadRepositoriesSuccess');
- /**
- * XXX(leedongwei): We would want to ensure that Store methods are not
- * called to be 100% sure that the short-circuit is happening correctly.
- *
- * However, it seems like we cannot attach a listener to the method
- * See: https://github.com/reflux/refluxjs/issues/139#issuecomment-64495623
- */
- // jest.spyOn(RepositoryStore, 'loadRepositories');
- // jest.spyOn(RepositoryStore, 'loadRepositoriesSuccess');
- });
- /**
- * XXX(leedongwei): I wanted to separate the ticks and run tests to assert the
- * state change at every tick but it is incredibly flakey.
- */
- it('fetches a Repository and emits actions', async () => {
- getRepositories(api, {orgSlug}); // Fire Action.loadRepositories
- expect(RepositoryStore.loadRepositories).toHaveBeenCalledWith(orgSlug);
- expect(RepositoryStore.loadRepositoriesSuccess).not.toHaveBeenCalled();
- await tick(); // Run Store.loadRepositories and fire Action.loadRepositoriesSuccess
- await tick(); // Run Store.loadRepositoriesSuccess
- expect(mockResponse).toHaveBeenCalledWith(repoUrl, expect.anything());
- expect(RepositoryStore.loadRepositoriesSuccess).toHaveBeenCalledWith(mockData);
- expect(RepositoryStore.state.orgSlug).toEqual(orgSlug);
- expect(RepositoryStore.state.repositories).toEqual(mockData);
- expect(RepositoryStore.state.repositoriesLoading).toEqual(false);
- });
- it('short-circuits the JS event loop', () => {
- expect(RepositoryStore.state.repositoriesLoading).toEqual(undefined);
- getRepositories(api, {orgSlug}); // Fire Action.loadRepositories
- expect(RepositoryStore.loadRepositories).toHaveBeenCalled();
- // expect(RepositoryStore.loadRepositories).not.toHaveBeenCalled();
- expect(RepositoryStore.state.repositoriesLoading).toEqual(true); // Short-circuit
- });
- });
|