Skip to content
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

try to replicate #170 and new issue on #61 #1

Merged
merged 1 commit into from
Aug 29, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 68 additions & 6 deletions test/react-web/client/graphql/queries.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,55 @@ describe('queries', () => {
wrapper = mount(app);
});

it('correctly sets loading state on remounted component with changed variables', (done) => {
const query = gql`
query remount($first: Int) { allPeople(first: $first) { people { name } } }
`;
const data = { allPeople: null };
const variables = { first: 1 };
const variables2 = { first: 2 };
const networkInterface = mockNetworkInterface(
{ request: { query, variables }, result: { data }, delay: 10 },
{ request: { query, variables: variables2 }, result: { data }, delay: 10 }
);
const client = new ApolloClient({ networkInterface });
let wrapper, render, count = 0;

@graphql(query, { options: ({ first }) => ({ variables: { first }})})
class Container extends React.Component<any, any> {
componentWillMount() {
if (count === 1) {
expect(this.props.data.loading).to.be.true; // on remount
count++;
}
}
componentWillReceiveProps(props) {
if (count === 0) { // has data
wrapper.unmount();
setTimeout(() => {
wrapper = mount(render(2));
}, 5);
}

if (count === 2) {
// remounted data after fetch
expect(props.data.loading).to.be.false;
done();
}
count++;
}
render() {
return null;
}
};

render = (first) => (
<ProviderMock client={client}><Container first={first} /></ProviderMock>
);

wrapper = mount(render(1));
});

it('executes a query with two root fields', (done) => {
const query = gql`query people {
allPeople(first: 1) { people { name } }
Expand Down Expand Up @@ -566,30 +615,43 @@ describe('queries', () => {
});

it('exposes refetch as part of the props api', (done) => {
const query = gql`query people { allPeople(first: 1) { people { name } } }`;
const query = gql`query people($first: Int) { allPeople(first: $first) { people { name } } }`;
const variables = { first: 1 };
const data1 = { allPeople: { people: [ { name: 'Luke Skywalker' } ] } };
const networkInterface = mockNetworkInterface(
{ request: { query }, result: { data: data1 } },
{ request: { query }, result: { data: data1 } }
{ request: { query, variables }, result: { data: data1 } },
{ request: { query, variables }, result: { data: data1 } },
{ request: { query, variables: { first: 2 } }, result: { data: data1 } }
);
const client = new ApolloClient({ networkInterface });

let hasRefetched;
let hasRefetched, count = 0;
@graphql(query)
class Container extends React.Component<any, any> {
componentWillMount(){
expect(this.props.data.refetch).to.be.exist;
expect(this.props.data.refetch).to.be.instanceof(Function);
}
componentWillReceiveProps({ data }) { // tslint:disable-line
if (count === 0) expect(data.loading).to.be.false; // first data
if (count === 1) expect(data.loading).to.be.true; // first refetch
if (count === 2) expect(data.loading).to.be.false; // second data
if (count === 3) expect(data.loading).to.be.true; // second refetch
if (count === 4) expect(data.loading).to.be.false; // third data
count ++;
if (hasRefetched) return;
hasRefetched = true;
expect(data.refetch).to.be.exist;
expect(data.refetch).to.be.instanceof(Function);
data.refetch()
.then(result => {
expect(result.data).to.deep.equal(data1);
done();
data.refetch({ first: 2 }) // new variables
.then(response => {
expect(response.data).to.deep.equal(data1);
expect(data.allPeople).to.deep.equal(data1.allPeople);
done();
});
})
.catch(done);
}
Expand All @@ -598,7 +660,7 @@ describe('queries', () => {
}
};

mount(<ProviderMock client={client}><Container /></ProviderMock>);
mount(<ProviderMock client={client}><Container first={1} /></ProviderMock>);
});

it('exposes fetchMore as part of the props api', (done) => {
Expand Down