Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
336
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
5c014193
Commit
5c014193
authored
8 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
test
parent
23e10069
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/api.js
+47
-1
47 additions, 1 deletion
test/api.js
with
47 additions
and
1 deletion
test/api.js
+
47
−
1
View file @
5c014193
...
...
@@ -213,6 +213,52 @@ describe('API', () => {
done
();
});
}));
it
(
'
存在しないリプライ先で怒られる
'
,
()
=>
new
Promise
(
async
(
done
)
=>
{
const
me
=
await
insertSakurako
();
const
post
=
{
text
:
'
さく
'
,
reply_to_id
:
'
000000000000000000000000
'
};
request
(
'
/posts/create
'
,
post
,
me
).
then
(
res
=>
{
res
.
should
.
have
.
status
(
400
);
done
();
});
}));
it
(
'
存在しないrepost対象で怒られる
'
,
()
=>
new
Promise
(
async
(
done
)
=>
{
const
me
=
await
insertSakurako
();
const
post
=
{
repost_id
:
'
000000000000000000000000
'
};
request
(
'
/posts/create
'
,
post
,
me
).
then
(
res
=>
{
res
.
should
.
have
.
status
(
400
);
done
();
});
}));
it
(
'
不正なリプライ先IDで怒られる
'
,
()
=>
new
Promise
(
async
(
done
)
=>
{
const
me
=
await
insertSakurako
();
const
post
=
{
text
:
'
さく
'
,
reply_to_id
:
'
kyoppie
'
};
request
(
'
/posts/create
'
,
post
,
me
).
then
(
res
=>
{
res
.
should
.
have
.
status
(
400
);
done
();
});
}));
it
(
'
不正なrepost対象IDで怒られる
'
,
()
=>
new
Promise
(
async
(
done
)
=>
{
const
me
=
await
insertSakurako
();
const
post
=
{
repost_id
:
'
kyoppie
'
};
request
(
'
/posts/create
'
,
post
,
me
).
then
(
res
=>
{
res
.
should
.
have
.
status
(
400
);
done
();
});
}));
});
describe
(
'
following/create
'
,
()
=>
{
...
...
@@ -262,7 +308,7 @@ describe('API', () => {
it
(
'
存在しないユーザーはフォローできない
'
,
()
=>
new
Promise
(
async
(
done
)
=>
{
const
me
=
await
insertSakurako
();
request
(
'
/following/create
'
,
{
user_id
:
'
587e7c4b520fb00aa49a5684
'
user_id
:
'
000000000000000000000000
'
},
me
).
then
(
res
=>
{
res
.
should
.
have
.
status
(
400
);
done
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment