Skip to content

Commit

Permalink
Merge pull request #6188 from appwrite/feat-mock-enums
Browse files Browse the repository at this point in the history
Feat mock enums
  • Loading branch information
abnegate committed Sep 7, 2023
2 parents 4dd9d54 + d4f6b99 commit 7f4e5f0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions app/controllers/mock.php
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,19 @@
->action(function (string $required, string $nullable, ?string $optional) {
});

App::post('/v1/mock/tests/general/enum')
->desc('Enum Test')
->groups(['mock'])
->label('scope', 'public')
->label('sdk.auth', [APP_AUTH_TYPE_SESSION, APP_AUTH_TYPE_KEY, APP_AUTH_TYPE_JWT])
->label('sdk.namespace', 'general')
->label('sdk.method', 'enum')
->label('sdk.description', 'Mock an enum parameter.')
->label('sdk.mock', true)
->param('mockType', '', new WhiteList(['first', 'second', 'third']), 'Sample enum param')
->action(function (string $mockType) {
});

App::get('/v1/mock/tests/general/400-error')
->desc('400 Error')
->groups(['mock'])
Expand Down
2 changes: 1 addition & 1 deletion src/Appwrite/Platform/Tasks/Specs.php
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public function action(string $version, string $mode, Registry $register): void
->setParam('docs.url', $endpoint . '/docs');

if ($mocks) {
$path = __DIR__ . '/../config/specs/' . $format . '-mocks-' . $platform . '.json';
$path = __DIR__ . '/../../../../app/config/specs/' . $format . '-mocks-' . $platform . '.json';

if (!file_put_contents($path, json_encode($specs->parse()))) {
throw new Exception('Failed to save mocks spec file: ' . $path);
Expand Down

0 comments on commit 7f4e5f0

Please sign in to comment.