dock_health_api 0.5.8 → 0.5.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +13 -0
- data/lib/dock_health_api/resources/task.rb +6 -0
- data/lib/dock_health_api/version.rb +1 -1
- data/spec/task_comment_spec.rb +72 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d1832a40bbc54875371a1f819afe18ea48072ba29254aac0fbf4d535cbbf25d
|
4
|
+
data.tar.gz: faa6758f0cd9b27186921934898640fa7833360d47106a4b2d740d94aef26106
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49846f61f1b202289521fbacc162e63f976378692f7152c496c37ddff66b87cf9b1bdc2e26f32b251d7db619f84b2dfddbbfa3a9c4042846577f9c95fea78e20
|
7
|
+
data.tar.gz: 7e79857806c080d7f5bf156a1438befead22c8ee3f07984ca0f73357bdb94ec36071815c251039c3543b101da27cfa3a4b8142fdbd607acce0580adf4de92b4a
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -126,6 +126,19 @@ params = { userId: "<user id>", organizationId: "<organization id>" }
|
|
126
126
|
DockHealthApi::Organization::User.update(params)
|
127
127
|
# Delete User from Organization
|
128
128
|
DockHealthApi::Organization::User.delete({id: "< user id >"})
|
129
|
+
|
130
|
+
# Get Specific Comment
|
131
|
+
DockHealthApi::Task::Comment.get("<comment id>")
|
132
|
+
# List comments for a specific task
|
133
|
+
DockHealthApi::Task::Comment.list(taskIdentifier: "<task id>")
|
134
|
+
# Create comment for a specific task
|
135
|
+
params = { comment: "comment text here", task: { type: "TASK", id: "<task id>" }}
|
136
|
+
DockHealthApi::Task::Comment.create(params)
|
137
|
+
# Update specific comment
|
138
|
+
params = { comment: "comment text here", id: "<comment id>" }
|
139
|
+
DockHealthApi::Task::Comment.update(params)
|
140
|
+
# Delete a specific comment
|
141
|
+
DockHealthApi::Task::Comment.delete(id: "<comment id>")
|
129
142
|
```
|
130
143
|
|
131
144
|
# Patient Data Format
|
@@ -0,0 +1,72 @@
|
|
1
|
+
require 'dock_health_api'
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
RSpec.describe DockHealthApi::Task::Comment do
|
5
|
+
let(:tasklistid) {DockHealthApi::TaskList.list.last["id"]}
|
6
|
+
let(:task) { DockHealthApi::Task.create({ description: "test foobar", taskList: { type: "DEVELOPER", id: tasklistid } }) }
|
7
|
+
let(:params) { { comment: "initial comment", task: { type: "TASK", id: task["id"] }} }
|
8
|
+
let!(:comment) { DockHealthApi::Task::Comment.create(params) }
|
9
|
+
|
10
|
+
describe "#create" do
|
11
|
+
context "create new task comment" do
|
12
|
+
let(:new_comment_params) { { comment: "new comment", task: { type: "TASK", id: task["id"] }} }
|
13
|
+
|
14
|
+
it "should create new task comment" do
|
15
|
+
initial_count = DockHealthApi::Task::Comment.list(taskIdentifier: task["id"]).count
|
16
|
+
response = DockHealthApi::Task::Comment.create(new_comment_params)
|
17
|
+
final_count = DockHealthApi::Task::Comment.list(taskIdentifier: task["id"]).count
|
18
|
+
expect(response["comment"]).to eq(new_comment_params[:comment])
|
19
|
+
expect(final_count - initial_count).to eq(1)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
describe "#list" do
|
25
|
+
context "list task comment by criteria" do
|
26
|
+
it "should list all task comments by criteria" do
|
27
|
+
response = DockHealthApi::Task::Comment.list(taskIdentifier: task["id"])
|
28
|
+
expect(response.last.is_a?(DockHealthApi::Task::Comment))
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe "#get" do
|
34
|
+
context "get a specific task comment" do
|
35
|
+
it "should get the correct task comment" do
|
36
|
+
response = DockHealthApi::Task::Comment.get(comment["id"])
|
37
|
+
expect(response["comment"]).to eq(params[:comment])
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
context "get task comment with wrong id" do
|
42
|
+
it "should return 404" do
|
43
|
+
wrong_id = "a" * 36
|
44
|
+
response = DockHealthApi::Task::Comment.get(wrong_id)
|
45
|
+
expect(response["status"]).to eq(500)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe "#update" do
|
51
|
+
context "update existing task comment" do
|
52
|
+
it "should update existing task comment" do
|
53
|
+
update_params = { comment: "updated text", id: comment["id"] }
|
54
|
+
response = DockHealthApi::Task::Comment.update(update_params)
|
55
|
+
expect(response["comment"]).to eq(update_params[:comment])
|
56
|
+
updated_task = DockHealthApi::Task::Comment.get(comment["id"])
|
57
|
+
expect(updated_task["comment"]).to eq(update_params[:comment])
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
describe "#delete" do
|
63
|
+
context "Delete existing task comment" do
|
64
|
+
it "should delete existing task comment" do
|
65
|
+
initial_count = DockHealthApi::Task::Comment.list(taskIdentifier: task["id"]).count
|
66
|
+
response = DockHealthApi::Task::Comment.delete(id: comment["id"])
|
67
|
+
final_count = DockHealthApi::Task::Comment.list(taskIdentifier: task["id"]).count
|
68
|
+
expect(initial_count - final_count).to eq(1)
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dock_health_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Magomero
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-
|
12
|
+
date: 2023-02-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: oauth2
|
@@ -127,6 +127,7 @@ files:
|
|
127
127
|
- spec/organization.rb
|
128
128
|
- spec/patient_spec.rb
|
129
129
|
- spec/spec_helper.rb
|
130
|
+
- spec/task_comment_spec.rb
|
130
131
|
- spec/task_group_spec.rb
|
131
132
|
- spec/task_spec.rb
|
132
133
|
- spec/tasklist_spec.rb
|