|
1 | 1 | import { rerender, settled } from '@ember/test-helpers';
|
2 | 2 |
|
3 |
| -import { createDeferred, setPromiseResult } from '@ember-data/request'; |
| 3 | +import { createDeferred, setPromiseResult, type Awaitable } from '@ember-data/request'; |
4 | 4 | import type { RenderingTestContext } from '@warp-drive/diagnostic/ember';
|
5 | 5 | import { module, setupRenderingTest, test } from '@warp-drive/diagnostic/ember';
|
6 | 6 | import { getPromiseState } from '@warp-drive/ember';
|
7 | 7 |
|
8 | 8 | type PromiseState<T, E> = ReturnType<typeof getPromiseState<T, E>>;
|
| 9 | +const SecretSymbol = Symbol.for('LegacyPromiseProxy'); |
| 10 | + |
| 11 | +interface PromiseProxy<T, E> extends Promise<T> {} |
| 12 | +class PromiseProxy<T, E> { |
| 13 | + [SecretSymbol]: true; |
| 14 | + promise: Awaitable<T, E>; |
| 15 | + |
| 16 | + constructor(promise: Awaitable<T, E>) { |
| 17 | + this[SecretSymbol] = true; |
| 18 | + this.promise = promise; |
| 19 | + } |
| 20 | + |
| 21 | + then<T1, T2>( |
| 22 | + onFulfilled?: ((value: T) => unknown) | undefined | null, |
| 23 | + onRejected?: ((error: E) => T2 | Promise<T2>) | undefined | null |
| 24 | + ): Promise<T1 | T2> { |
| 25 | + return this.promise.then(onFulfilled!, onRejected!) as Promise<T1 | T2>; |
| 26 | + } |
| 27 | + |
| 28 | + catch<T2>(onRejected: ((error: E) => T2 | Promise<T2>) | undefined | null): Promise<T2> { |
| 29 | + return this.promise.catch(onRejected!) as Promise<T2>; |
| 30 | + } |
| 31 | + |
| 32 | + finally(onFinally: () => void): Promise<T> { |
| 33 | + return this.promise.finally(onFinally) as Promise<T>; |
| 34 | + } |
| 35 | +} |
9 | 36 |
|
10 | 37 | module('Integration | get-promise-state', function (hooks) {
|
11 | 38 | setupRenderingTest(hooks);
|
@@ -196,4 +223,88 @@ module('Integration | get-promise-state', function (hooks) {
|
196 | 223 | assert.equal(counter, 1);
|
197 | 224 | assert.equal(this.element.textContent?.trim(), 'Our Error\n Count:\n 1');
|
198 | 225 | });
|
| 226 | + |
| 227 | + test('it unwraps promise-proxies that utilize the secret symbol for error states', async function (this: RenderingTestContext, assert) { |
| 228 | + const _promise = Promise.resolve().then(() => { |
| 229 | + throw new Error('Our Error'); |
| 230 | + }); |
| 231 | + const promise = new PromiseProxy<never, Error>(_promise); |
| 232 | + |
| 233 | + try { |
| 234 | + getPromiseState(promise); |
| 235 | + await promise; |
| 236 | + } catch { |
| 237 | + // do nothing |
| 238 | + } |
| 239 | + |
| 240 | + let state: PromiseState<string, Error>; |
| 241 | + function _getPromiseState<T>(p: Promise<T>): PromiseState<T, Error> { |
| 242 | + state = getPromiseState(p) as PromiseState<string, Error>; |
| 243 | + return state as PromiseState<T, Error>; |
| 244 | + } |
| 245 | + let counter = 0; |
| 246 | + function countFor(_result: unknown, _error: unknown) { |
| 247 | + return ++counter; |
| 248 | + } |
| 249 | + |
| 250 | + await this.render( |
| 251 | + <template> |
| 252 | + {{#let (_getPromiseState promise) as |state|}} |
| 253 | + {{#if state.isPending}} |
| 254 | + Pending |
| 255 | + {{else if state.isError}} |
| 256 | + {{state.error.message}} |
| 257 | + {{else if state.isSuccess}} |
| 258 | + Invalid Success Reached |
| 259 | + {{/if}} |
| 260 | + <br />Count: |
| 261 | + {{countFor state.result state.error}}{{/let}} |
| 262 | + </template> |
| 263 | + ); |
| 264 | + |
| 265 | + assert.equal(state!.result, null); |
| 266 | + assert.true(state!.error instanceof Error); |
| 267 | + assert.equal((state!.error as Error | undefined)?.message, 'Our Error'); |
| 268 | + assert.equal(counter, 1); |
| 269 | + assert.equal(this.element.textContent?.trim(), 'Our Error\n Count:\n 1'); |
| 270 | + await rerender(); |
| 271 | + assert.equal(state!.result, null); |
| 272 | + assert.true(state!.error instanceof Error); |
| 273 | + assert.equal((state!.error as Error | undefined)?.message, 'Our Error'); |
| 274 | + assert.equal(counter, 1); |
| 275 | + assert.equal(this.element.textContent?.trim(), 'Our Error\n Count:\n 1'); |
| 276 | + assert.equal(state!, getPromiseState(_promise)); |
| 277 | + }); |
| 278 | + |
| 279 | + test('it unwraps promise-proxies that utilize the secret symbol for success states', async function (this: RenderingTestContext, assert) { |
| 280 | + const _promise = Promise.resolve().then(() => 'Our Data'); |
| 281 | + const promise = new PromiseProxy<string, Error>(_promise); |
| 282 | + getPromiseState(promise); |
| 283 | + await promise; |
| 284 | + |
| 285 | + let state: PromiseState<string, Error>; |
| 286 | + function _getPromiseState<T>(p: Promise<T>): PromiseState<T, Error> { |
| 287 | + state = getPromiseState(p) as PromiseState<string, Error>; |
| 288 | + return state as PromiseState<T, Error>; |
| 289 | + } |
| 290 | + let counter = 0; |
| 291 | + function countFor(_result: unknown) { |
| 292 | + return ++counter; |
| 293 | + } |
| 294 | + |
| 295 | + await this.render( |
| 296 | + <template> |
| 297 | + {{#let (_getPromiseState promise) as |state|}} |
| 298 | + {{state.result}}<br />Count: |
| 299 | + {{countFor state.result}} |
| 300 | + {{/let}} |
| 301 | + </template> |
| 302 | + ); |
| 303 | + |
| 304 | + assert.equal(this.element.textContent?.trim(), 'Our DataCount:\n 1'); |
| 305 | + await settled(); |
| 306 | + |
| 307 | + assert.equal(this.element.textContent?.trim(), 'Our DataCount:\n 1'); |
| 308 | + assert.equal(state!, getPromiseState(_promise)); |
| 309 | + }); |
199 | 310 | });
|
0 commit comments