-
Notifications
You must be signed in to change notification settings - Fork 181
Unit Tests - Node #736
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
Open
mvarendorff
wants to merge
2
commits into
appwrite:master
Choose a base branch
from
mvarendorff:feat-680-add-unit-tests-node
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+250
−1
Open
Unit Tests - Node #736
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,6 @@ | ||
const ID = require("../lib/id"); | ||
|
||
describe("ID", () => { | ||
test('unique', () => expect(ID.unique()).toEqual('unique()')); | ||
test('custom', () => expect(ID.custom('custom')).toEqual('custom')); | ||
}); |
This file contains hidden or 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 @@ | ||
const Permission = require("../lib/permission"); | ||
const Role = require("../lib/role"); | ||
|
||
describe('Permission', () => { | ||
test('read', () => expect(Permission.read(Role.any())).toEqual('read("any")')); | ||
test('write', () => expect(Permission.write(Role.any())).toEqual('write("any")')); | ||
test('create', () => expect(Permission.create(Role.any())).toEqual('create("any")')); | ||
test('update', () => expect(Permission.update(Role.any())).toEqual('update("any")')); | ||
test('delete', () => expect(Permission.delete(Role.any())).toEqual('delete("any")')); | ||
}) |
This file contains hidden or 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,155 @@ | ||
const Query = require("../lib/query"); | ||
|
||
const tests = [ | ||
{ | ||
description: 'with a string', | ||
value: 's', | ||
expectedValues: '["s"]' | ||
}, | ||
{ | ||
description: 'with a integer', | ||
value: 1, | ||
expectedValues: '[1]' | ||
}, | ||
{ | ||
description: 'with a double', | ||
value: 1.2, | ||
expectedValues: '[1.2]' | ||
}, | ||
{ | ||
description: 'with a whole number double', | ||
value: 1.0, | ||
expectedValues: '[1]' | ||
}, | ||
{ | ||
description: 'with a bool', | ||
value: false, | ||
expectedValues: '[false]' | ||
}, | ||
{ | ||
description: 'with a list', | ||
value: ['a', 'b', 'c'], | ||
expectedValues: '["a","b","c"]' | ||
} | ||
]; | ||
|
||
describe('Query', () => { | ||
describe('basic filter equal', () => { | ||
for (const t of tests) { | ||
test(t.description, () => | ||
expect(Query.equal("attr", t.value)) | ||
.toEqual(`equal("attr", ${t.expectedValues})`) | ||
) | ||
} | ||
}) | ||
|
||
describe('basic filter notEqual', () => { | ||
for (const t of tests) { | ||
test(t.description, () => | ||
expect(Query.notEqual("attr", t.value)) | ||
.toEqual(`notEqual("attr", ${t.expectedValues})`) | ||
) | ||
} | ||
}); | ||
|
||
describe('basic filter lessThan', () => { | ||
for (const t of tests) { | ||
test(t.description, () => | ||
expect(Query.lessThan("attr", t.value)) | ||
.toEqual(`lessThan("attr", ${t.expectedValues})`) | ||
) | ||
} | ||
}); | ||
|
||
describe('basic filter lessThanEqual', () => { | ||
for (const t of tests) { | ||
test(t.description, () => | ||
expect(Query.lessThanEqual("attr", t.value)) | ||
.toEqual(`lessThanEqual("attr", ${t.expectedValues})`) | ||
) | ||
} | ||
}); | ||
|
||
describe('basic filter greaterThan', () => { | ||
for (const t of tests) { | ||
test(t.description, () => | ||
expect(Query.greaterThan("attr", t.value)) | ||
.toEqual(`greaterThan("attr", ${t.expectedValues})`) | ||
) | ||
} | ||
}); | ||
|
||
describe('basic filter greaterThanEqual', () => { | ||
for (const t of tests) { | ||
test(t.description, () => | ||
expect(Query.greaterThanEqual("attr", t.value)) | ||
.toEqual(`greaterThanEqual("attr", ${t.expectedValues})`) | ||
) | ||
} | ||
}); | ||
|
||
test('search', () => | ||
expect(Query.search('attr', 'keyword1 keyword2')) | ||
.toEqual('search("attr", ["keyword1 keyword2"])') | ||
); | ||
|
||
test('isNull', () => | ||
expect(Query.isNull('attr')) | ||
.toEqual('isNull("attr")') | ||
); | ||
|
||
test('isNotNull', () => | ||
expect(Query.isNotNull('attr')) | ||
.toEqual('isNotNull("attr")') | ||
); | ||
|
||
describe('between', () => { | ||
test('with integers', () => | ||
expect(Query.between('attr', 1, 2)) | ||
.toEqual('between("attr", 1, 2)') | ||
); | ||
test('with doubles', () => | ||
expect(Query.between('attr', 1.2, 2.2)) | ||
.toEqual('between("attr", 1.2, 2.2)') | ||
); | ||
test('with strings', () => | ||
expect(Query.between('attr', "a", "z")) | ||
.toEqual('between("attr", "a" "z")') | ||
); | ||
}); | ||
|
||
test('select', () => | ||
expect(Query.select(['attr1', 'attr2'])) | ||
.toEqual('select(["attr1","attr2"])') | ||
); | ||
|
||
test('orderAsc', () => | ||
expect(Query.orderAsc('attr')) | ||
.toEqual('orderAsc("attr")') | ||
); | ||
|
||
test('orderDesc', () => | ||
expect(Query.orderDesc('attr')) | ||
.toEqual('orderDesc("attr")') | ||
); | ||
|
||
test('cursorBefore', () => | ||
expect(Query.cursorBefore('attr')) | ||
.toEqual('cursorBefore("attr")') | ||
); | ||
|
||
test('cursorAfter', () => | ||
expect(Query.cursorAfter('attr')) | ||
.toEqual('cursorAfter("attr")') | ||
); | ||
|
||
test('limit', () => | ||
expect(Query.limit(1)) | ||
.toEqual('limit(1)') | ||
); | ||
|
||
test('offset', () => | ||
expect(Query.offset(1)) | ||
.toEqual('offset(1)') | ||
); | ||
}) |
This file contains hidden or 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,14 @@ | ||
const Role = require("../lib/role"); | ||
|
||
describe('Role', () => { | ||
test('any', () => expect(Role.any()).toEqual('any')); | ||
test('user without status', () => expect(Role.user('custom')).toEqual('user:custom')); | ||
test('user with status', () => expect(Role.user('custom', 'verified')).toEqual('user:custom/verified')); | ||
test('users without status', () => expect(Role.users()).toEqual('users')); | ||
test('users with status', () => expect(Role.users('verified')).toEqual('users/verified')); | ||
test('guests', () => expect(Role.guests()).toEqual('guests')); | ||
test('team without role', () => expect(Role.team('custom')).toEqual('team:custom')) | ||
test('team with role', () => expect(Role.team('custom', 'owner')).toEqual('team:custom/owner')) | ||
test('member', () => expect(Role.member('custom')).toEqual('member:custom')) | ||
test('label', () => expect(Role.label('admin')).toEqual('label:admin')) | ||
}) |
This file contains hidden or 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,38 @@ | ||
const Client = require("../../lib/client"); | ||
const InputFile = require("../../lib/inputFile"); | ||
const {{ service.name | caseUcfirst }} = require("../../lib/services/{{ service.name | caseCamel }}"); | ||
|
||
const mockedAxios = require("axios"); | ||
jest.mock('axios', () => jest.fn()); | ||
loks0n marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
describe('{{ service.name | caseUcfirst }}', () => { | ||
const client = new Client(); | ||
const {{ service.name | caseCamel }} = new {{ service.name | caseUcfirst }}(client); | ||
|
||
{% for method in service.methods ~%} | ||
test('test method {{ method.name | caseCamel }}()', async () => { | ||
{%~ if method.type == 'webAuth' %} | ||
const data = ''; | ||
{%~ elseif method.type == 'location' %} | ||
const data = new Uint8Array(0); | ||
{%~ else %} | ||
{%- if method.responseModel and method.responseModel != 'any' %} | ||
const data = { | ||
{%- for definition in spec.definitions ~%}{%~ if definition.name == method.responseModel -%}{%~ for property in definition.properties | filter((param) => param.required) ~%} | ||
'{{ property.name | escapeDollarSign }}': {% if property.type == 'object' %}{}{% elseif property.type == 'array' %}[]{% elseif property.type == 'string' %}'{{ property.example | escapeDollarSign }}'{% elseif property.type == 'boolean' %}true{% else %}{{ property.example }}{% endif %},{%~ endfor ~%}{% set break = true %}{%- else -%}{% set continue = true %}{%- endif -%}{%~ endfor -%} | ||
}; | ||
{%~ else %} | ||
const data = ''; | ||
{%~ endif %} | ||
{%~ endif %} | ||
|
||
mockedAxios.mockImplementation(() => Promise.resolve({data: data})); | ||
|
||
const response = await {{ service.name | caseCamel }}.{{ method.name | caseCamel }}({%~ for parameter in method.parameters.all | filter((param) => param.required) ~%} | ||
{% if parameter.type == 'object' %}{}{% elseif parameter.type == 'array' %}[]{% elseif parameter.type == 'file' %}InputFile.fromBuffer(new Uint8Array(0), 'image.png'){% elseif parameter.type == 'boolean' %}true{% elseif parameter.type == 'string' %}'{% if parameter.example is not empty %}{{ parameter.example | escapeDollarSign }}{% endif %}'{% elseif parameter.type == 'integer' and parameter['x-example'] is empty %}1{% elseif parameter.type == 'number' and parameter['x-example'] is empty %}1.0{% else %}{{ parameter.example }}{%~ endif ~%},{%~ endfor ~%} | ||
); | ||
|
||
expect(response).toEqual(data); | ||
}); | ||
{% endfor %} | ||
}) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.