diff options
author | Chocobozzz <me@florianbigard.com> | 2021-08-25 15:13:41 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-08-26 10:01:42 +0200 |
commit | 851675c5591dcab1070183f0ed1b1a788de07d2c (patch) | |
tree | 9553ea2d73b5077f3b51345eeca8acbac48b4bd7 /server | |
parent | 0d22b7ad5ffea0a830a266815f7bdfd8893917c9 (diff) | |
download | PeerTube-851675c5591dcab1070183f0ed1b1a788de07d2c.tar.gz PeerTube-851675c5591dcab1070183f0ed1b1a788de07d2c.tar.zst PeerTube-851675c5591dcab1070183f0ed1b1a788de07d2c.zip |
Rename jobs list command
Diffstat (limited to 'server')
-rw-r--r-- | server/tests/api/server/handle-down.ts | 2 | ||||
-rw-r--r-- | server/tests/api/server/jobs.ts | 8 | ||||
-rw-r--r-- | server/tests/api/videos/video-transcoder.ts | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/server/tests/api/server/handle-down.ts b/server/tests/api/server/handle-down.ts index 2f3950354..b3255a721 100644 --- a/server/tests/api/server/handle-down.ts +++ b/server/tests/api/server/handle-down.ts | |||
@@ -161,7 +161,7 @@ describe('Test handle downs', function () { | |||
161 | const states: JobState[] = [ 'waiting', 'active' ] | 161 | const states: JobState[] = [ 'waiting', 'active' ] |
162 | 162 | ||
163 | for (const state of states) { | 163 | for (const state of states) { |
164 | const body = await servers[0].jobs.getJobsList({ | 164 | const body = await servers[0].jobs.list({ |
165 | state: state, | 165 | state: state, |
166 | start: 0, | 166 | start: 0, |
167 | count: 50, | 167 | count: 50, |
diff --git a/server/tests/api/server/jobs.ts b/server/tests/api/server/jobs.ts index c10c154c2..937028e4f 100644 --- a/server/tests/api/server/jobs.ts +++ b/server/tests/api/server/jobs.ts | |||
@@ -38,14 +38,14 @@ describe('Test jobs', function () { | |||
38 | }) | 38 | }) |
39 | 39 | ||
40 | it('Should list jobs', async function () { | 40 | it('Should list jobs', async function () { |
41 | const body = await servers[1].jobs.getJobsList({ state: 'completed' }) | 41 | const body = await servers[1].jobs.list({ state: 'completed' }) |
42 | expect(body.total).to.be.above(2) | 42 | expect(body.total).to.be.above(2) |
43 | expect(body.data).to.have.length.above(2) | 43 | expect(body.data).to.have.length.above(2) |
44 | }) | 44 | }) |
45 | 45 | ||
46 | it('Should list jobs with sort, pagination and job type', async function () { | 46 | it('Should list jobs with sort, pagination and job type', async function () { |
47 | { | 47 | { |
48 | const body = await servers[1].jobs.getJobsList({ | 48 | const body = await servers[1].jobs.list({ |
49 | state: 'completed', | 49 | state: 'completed', |
50 | start: 1, | 50 | start: 1, |
51 | count: 2, | 51 | count: 2, |
@@ -66,7 +66,7 @@ describe('Test jobs', function () { | |||
66 | } | 66 | } |
67 | 67 | ||
68 | { | 68 | { |
69 | const body = await servers[1].jobs.getJobsList({ | 69 | const body = await servers[1].jobs.list({ |
70 | state: 'completed', | 70 | state: 'completed', |
71 | start: 0, | 71 | start: 0, |
72 | count: 100, | 72 | count: 100, |
@@ -82,7 +82,7 @@ describe('Test jobs', function () { | |||
82 | }) | 82 | }) |
83 | 83 | ||
84 | it('Should list all jobs', async function () { | 84 | it('Should list all jobs', async function () { |
85 | const body = await servers[1].jobs.getJobsList() | 85 | const body = await servers[1].jobs.list() |
86 | expect(body.total).to.be.above(2) | 86 | expect(body.total).to.be.above(2) |
87 | 87 | ||
88 | const jobs = body.data | 88 | const jobs = body.data |
diff --git a/server/tests/api/videos/video-transcoder.ts b/server/tests/api/videos/video-transcoder.ts index f67752d69..2b49176b2 100644 --- a/server/tests/api/videos/video-transcoder.ts +++ b/server/tests/api/videos/video-transcoder.ts | |||
@@ -693,7 +693,7 @@ describe('Test video transcoding', function () { | |||
693 | describe('Transcoding job queue', function () { | 693 | describe('Transcoding job queue', function () { |
694 | 694 | ||
695 | it('Should have the appropriate priorities for transcoding jobs', async function () { | 695 | it('Should have the appropriate priorities for transcoding jobs', async function () { |
696 | const body = await servers[1].jobs.getJobsList({ | 696 | const body = await servers[1].jobs.list({ |
697 | start: 0, | 697 | start: 0, |
698 | count: 100, | 698 | count: 100, |
699 | sort: '-createdAt', | 699 | sort: '-createdAt', |