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

fix(angular-query): improve support for required signals #8409

Merged
merged 1 commit into from
Dec 8, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe('injectMutationState', () => {
})

describe('injectMutationState', () => {
test('should return variables after calling mutate 1', async () => {
test('should return variables after calling mutate 1', () => {
const mutationKey = ['mutation']
const variables = 'foo123'

Expand All @@ -53,7 +53,7 @@ describe('injectMutationState', () => {
expect(mutationState()).toEqual([variables])
})

test('reactive options should update injectMutationState', async () => {
test('reactive options should update injectMutationState', () => {
const mutationKey1 = ['mutation1']
const mutationKey2 = ['mutation2']
const variables1 = 'foo123'
Expand Down Expand Up @@ -87,11 +87,10 @@ describe('injectMutationState', () => {
expect(mutationState()).toEqual([variables1])

filterKey.set(mutationKey2)
TestBed.flushEffects()
expect(mutationState()).toEqual([variables2])
})

test('should return variables after calling mutate 2', async () => {
test('should return variables after calling mutate 2', () => {
queryClient.clear()
const mutationKey = ['mutation']
const variables = 'bar234'
Expand Down Expand Up @@ -156,8 +155,6 @@ describe('injectMutationState', () => {
const { debugElement } = fixture
setFixtureSignalInputs(fixture, { name: fakeName })

fixture.detectChanges()

let spans = debugElement
.queryAll(By.css('span'))
.map((span) => span.nativeNode.textContent)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe('injectMutation', () => {
})
})

test('should change state after invoking mutate', async () => {
test('should change state after invoking mutate', () => {
const result = 'Mock data'

const mutation = TestBed.runInInjectionContext(() => {
Expand All @@ -60,6 +60,8 @@ describe('injectMutation', () => {
}))
})

TestBed.flushEffects()

mutation.mutate(result)
vi.advanceTimersByTime(1)

Expand All @@ -79,6 +81,7 @@ describe('injectMutation', () => {
mutationFn: errorMutator,
}))
})

mutation.mutate({})

await resolveMutations()
Expand Down Expand Up @@ -129,8 +132,6 @@ describe('injectMutation', () => {

mutationKey.set(['2'])

TestBed.flushEffects()

mutation.mutate('xyz')

const mutations = mutationCache.find({ mutationKey: ['2'] })
Expand Down Expand Up @@ -405,6 +406,8 @@ describe('injectMutation', () => {
}))
})

TestBed.flushEffects()

mutate()

await resolveMutations()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ describe('injectQuery', () => {
const withResultInfer = TestBed.runInInjectionContext(() =>
injectQuery(() => ({
queryKey: key,
queryFn: async () => true,
queryFn: () => true,
})),
)
expectTypeOf(withResultInfer.data()).toEqualTypeOf<boolean | undefined>()
Expand Down Expand Up @@ -263,8 +263,6 @@ describe('injectQuery', () => {
expect(query.isFetching()).toBe(true)
expect(query.isStale()).toBe(true)
expect(query.isFetched()).toBe(false)

flush()
}))

test('should resolve to success and update signal: injectQuery()', fakeAsync(() => {
Expand All @@ -275,7 +273,7 @@ describe('injectQuery', () => {
}))
})

flush()
tick()

expect(query.status()).toBe('success')
expect(query.data()).toBe('result2')
Expand All @@ -294,7 +292,7 @@ describe('injectQuery', () => {
}))
})

flush()
tick()

expect(query.status()).toBe('error')
expect(query.data()).toBe(undefined)
Expand All @@ -316,7 +314,7 @@ describe('injectQuery', () => {
queryFn: spy,
}))
})
flush()
tick()
expect(spy).toHaveBeenCalledTimes(1)

expect(query.status()).toBe('success')
Expand All @@ -331,7 +329,6 @@ describe('injectQuery', () => {
queryKey: ['key8'],
signal: expect.anything(),
})
flush()
}))

test('should only run query once enabled signal is set to true', fakeAsync(() => {
Expand All @@ -350,8 +347,7 @@ describe('injectQuery', () => {
expect(query.status()).toBe('pending')

enabled.set(true)
TestBed.flushEffects()
flush()
tick()
expect(spy).toHaveBeenCalledTimes(1)
expect(query.status()).toBe('success')
}))
Expand Down Expand Up @@ -381,7 +377,6 @@ describe('injectQuery', () => {
expect(dependentQueryFn).not.toHaveBeenCalled()

tick()
TestBed.flushEffects()

expect(query1.data()).toStrictEqual('Some data')
expect(query2.fetchStatus()).toStrictEqual('fetching')
Expand Down Expand Up @@ -419,7 +414,7 @@ describe('injectQuery', () => {
)
})

flush()
tick()

keySignal.set('key12')

Expand All @@ -433,8 +428,6 @@ describe('injectQuery', () => {
}),
)
})

flush()
}))

describe('throwOnError', () => {
Expand Down Expand Up @@ -471,7 +464,6 @@ describe('injectQuery', () => {
expect(() => {
flush()
}).toThrowError('Some error')
flush()
}))

test('should throw when throwOnError function returns true', fakeAsync(() => {
Expand All @@ -486,7 +478,6 @@ describe('injectQuery', () => {
expect(() => {
flush()
}).toThrowError('Some error')
flush()
}))
})

Expand All @@ -501,12 +492,12 @@ describe('injectQuery', () => {

expect(query.status()).toBe('pending')

flush()
tick()

expect(query.status()).toBe('error')
}))

test('should render with required signal inputs', fakeAsync(async () => {
test('should render with required signal inputs', fakeAsync(() => {
@Component({
selector: 'app-fake',
template: `{{ query.data() }}`,
Expand All @@ -517,7 +508,7 @@ describe('injectQuery', () => {

query = injectQuery(() => ({
queryKey: ['fake', this.name()],
queryFn: () => Promise.resolve(this.name()),
queryFn: () => this.name(),
}))
}

Expand All @@ -526,10 +517,10 @@ describe('injectQuery', () => {
name: 'signal-input-required-test',
})

flush()
fixture.detectChanges()
tick()

expect(fixture.debugElement.nativeElement.textContent).toEqual(
expect(fixture.componentInstance.query.data()).toEqual(
'signal-input-required-test',
)
}))
Expand Down Expand Up @@ -565,13 +556,13 @@ describe('injectQuery', () => {

const fixture = TestBed.createComponent(FakeComponent)
fixture.detectChanges()
flush()
tick()

expect(fixture.componentInstance.query.data()).toEqual('test name')

fixture.componentInstance.name.set('test name 2')
fixture.detectChanges()
flush()
tick()

expect(fixture.componentInstance.query.data()).toEqual('test name 2')
}))
Expand Down Expand Up @@ -608,13 +599,13 @@ describe('injectQuery', () => {

const fixture = TestBed.createComponent(FakeComponent)
fixture.detectChanges()
flush()
tick()

expect(fixture.componentInstance.query.data()).toEqual('test name')

fixture.componentInstance.name.set('test name 2')
fixture.detectChanges()
flush()
tick()

expect(fixture.componentInstance.query.data()).toEqual('test name 2')
}))
Expand Down

This file was deleted.

Loading
Loading