-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add decorator for
memberAction
- Loading branch information
1 parent
678186e
commit a1ed674
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import instanceOp, { InstanceOperationOptions } from './utils/member-action'; | ||
|
||
export function memberAction<IN = any, OUT = any>(options: InstanceOperationOptions<IN, OUT>) { | ||
return function createMemberActionDescriptor() { | ||
return { | ||
value: instanceOp(options) | ||
}; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import { memberAction } from 'ember-api-actions/decorators'; | ||
import DS from 'ember-data'; | ||
import { setupTest } from 'ember-qunit'; | ||
import Pretender from 'pretender'; | ||
import { module, test } from 'qunit'; | ||
|
||
class Fruit extends DS.Model { | ||
@memberAction({ path: 'doRipen' }) | ||
public ripen; | ||
} | ||
|
||
module('Unit | Utility | decorators/member-action', (hooks) => { | ||
setupTest(hooks); | ||
|
||
let server: any; | ||
hooks.beforeEach(() => { | ||
server = new Pretender(); | ||
}); | ||
hooks.afterEach(() => { | ||
server.shutdown(); | ||
}); | ||
|
||
hooks.beforeEach(function() { | ||
this.owner.unregister('model:fruit'); | ||
this.owner.register('model:fruit', Fruit); | ||
|
||
this.store = this.owner.lookup('service:store'); | ||
|
||
this.fruit = this.store.createRecord('fruit', { | ||
id: 1, | ||
name: 'apple' | ||
}); | ||
}); | ||
|
||
test('it adds a method through a decorator', async function(assert) { | ||
assert.expect(4); | ||
|
||
server.put('/fruits/:id/doRipen', (request: { url: string; requestBody: string }) => { | ||
const data = JSON.parse(request.requestBody); | ||
assert.deepEqual(data, { id: '1', name: 'apple' }, 'member action - request payload is correct'); | ||
assert.equal(request.url, '/fruits/1/doRipen', 'request was made to "doRipen"'); | ||
return [200, {}, '{"status": "ok"}']; | ||
}); | ||
|
||
assert.equal(typeof this.fruit.ripen, 'function', 'Assigns a method on the type'); | ||
|
||
const { id, name } = this.fruit; | ||
const result = await this.fruit.ripen({ id, name }); | ||
|
||
assert.deepEqual(result, { status: 'ok' }, 'Passes through the API response'); | ||
}); | ||
}); |