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

chore(iif): convert iif specs to run mode #6918

Merged
merged 1 commit into from Apr 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
170 changes: 113 additions & 57 deletions spec/observables/if-spec.ts
@@ -1,94 +1,150 @@
/** @prettier */
import { expect } from 'chai';
import { iif, of } from 'rxjs';
import { expectObservable } from '../helpers/marble-testing';
import { TestScheduler } from 'rxjs/testing';
import { observableMatcher } from '../helpers/observableMatcher';

describe('iif', () => {
let rxTestScheduler: TestScheduler;

beforeEach(() => {
rxTestScheduler = new TestScheduler(observableMatcher);
});

it('should subscribe to thenSource when the conditional returns true', () => {
const e1 = iif(() => true, of('a'), of());
const expected = '(a|)';
rxTestScheduler.run(({ expectObservable }) => {
const e1 = iif(() => true, of('a'), of());
const expected = '(a|)';

expectObservable(e1).toBe(expected);
expectObservable(e1).toBe(expected);
});
});

it('should subscribe to elseSource when the conditional returns false', () => {
const e1 = iif(() => false, of('a'), of('b'));
const expected = '(b|)';
rxTestScheduler.run(({ expectObservable }) => {
const e1 = iif(() => false, of('a'), of('b'));
const expected = '(b|)';

expectObservable(e1).toBe(expected);
expectObservable(e1).toBe(expected);
});
});

it('should complete without an elseSource when the conditional returns false', () => {
const e1 = iif(() => false, of('a'), of());
const expected = '|';
rxTestScheduler.run(({ expectObservable }) => {
const e1 = iif(() => false, of('a'), of());
const expected = '|';

expectObservable(e1).toBe(expected);
expectObservable(e1).toBe(expected);
});
});

it('should raise error when conditional throws', () => {
const e1 = iif(((): boolean => {
throw 'error';
}), of('a'), of());

const expected = '#';

expectObservable(e1).toBe(expected);
rxTestScheduler.run(({ expectObservable }) => {
const e1 = iif(
(): boolean => {
throw 'error';
},
of('a'),
of()
);

const expected = '#';

expectObservable(e1).toBe(expected);
});
});

it('should accept resolved promise as thenSource', (done) => {
const expected = 42;
const e1 = iif(() => true, new Promise((resolve: any) => { resolve(expected); }), of());

e1.subscribe({ next: x => {
expect(x).to.equal(expected);
}, error: (x) => {
done(new Error('should not be called'));
}, complete: () => {
done();
} });
const e1 = iif(
() => true,
new Promise((resolve: any) => {
resolve(expected);
}),
of()
);

e1.subscribe({
next: (x) => {
expect(x).to.equal(expected);
},
error: (x) => {
done(new Error('should not be called'));
},
complete: () => {
done();
},
});
});

it('should accept resolved promise as elseSource', (done) => {
const expected = 42;
const e1 = iif(() => false,
const e1 = iif(
() => false,
of('a'),
new Promise((resolve: any) => { resolve(expected); }));

e1.subscribe({ next: x => {
expect(x).to.equal(expected);
}, error: (x) => {
done(new Error('should not be called'));
}, complete: () => {
done();
} });
new Promise((resolve: any) => {
resolve(expected);
})
);

e1.subscribe({
next: (x) => {
expect(x).to.equal(expected);
},
error: (x) => {
done(new Error('should not be called'));
},
complete: () => {
done();
},
});
});

it('should accept rejected promise as elseSource', (done) => {
const expected = 42;
const e1 = iif(() => false,
const e1 = iif(
() => false,
of('a'),
new Promise((resolve: any, reject: any) => { reject(expected); }));

e1.subscribe({ next: x => {
done(new Error('should not be called'));
}, error: (x) => {
expect(x).to.equal(expected);
done();
}, complete: () => {
done(new Error('should not be called'));
} });
new Promise((resolve: any, reject: any) => {
reject(expected);
})
);

e1.subscribe({
next: (x) => {
done(new Error('should not be called'));
},
error: (x) => {
expect(x).to.equal(expected);
done();
},
complete: () => {
done(new Error('should not be called'));
},
});
});

it('should accept rejected promise as thenSource', (done) => {
const expected = 42;
const e1 = iif(() => true, new Promise((resolve: any, reject: any) => { reject(expected); }), of());

e1.subscribe({ next: x => {
done(new Error('should not be called'));
}, error: (x) => {
expect(x).to.equal(expected);
done();
}, complete: () => {
done(new Error('should not be called'));
} });
const e1 = iif(
() => true,
new Promise((resolve: any, reject: any) => {
reject(expected);
}),
of()
);

e1.subscribe({
next: (x) => {
done(new Error('should not be called'));
},
error: (x) => {
expect(x).to.equal(expected);
done();
},
complete: () => {
done(new Error('should not be called'));
},
});
});
});