jira-ruby-dmg 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.travis.yml +6 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +46 -0
  6. data/README.rdoc +309 -0
  7. data/Rakefile +28 -0
  8. data/example.rb +119 -0
  9. data/http-basic-example.rb +112 -0
  10. data/jira-ruby-dmg.gemspec +28 -0
  11. data/lib/jira/base.rb +497 -0
  12. data/lib/jira/base_factory.rb +49 -0
  13. data/lib/jira/client.rb +165 -0
  14. data/lib/jira/has_many_proxy.rb +43 -0
  15. data/lib/jira/http_client.rb +69 -0
  16. data/lib/jira/http_error.rb +16 -0
  17. data/lib/jira/oauth_client.rb +84 -0
  18. data/lib/jira/railtie.rb +10 -0
  19. data/lib/jira/request_client.rb +18 -0
  20. data/lib/jira/resource/attachment.rb +12 -0
  21. data/lib/jira/resource/comment.rb +14 -0
  22. data/lib/jira/resource/component.rb +10 -0
  23. data/lib/jira/resource/field.rb +10 -0
  24. data/lib/jira/resource/filter.rb +15 -0
  25. data/lib/jira/resource/issue.rb +76 -0
  26. data/lib/jira/resource/issuetype.rb +10 -0
  27. data/lib/jira/resource/priority.rb +10 -0
  28. data/lib/jira/resource/project.rb +31 -0
  29. data/lib/jira/resource/status.rb +10 -0
  30. data/lib/jira/resource/transition.rb +33 -0
  31. data/lib/jira/resource/user.rb +14 -0
  32. data/lib/jira/resource/version.rb +10 -0
  33. data/lib/jira/resource/worklog.rb +16 -0
  34. data/lib/jira/tasks.rb +0 -0
  35. data/lib/jira/version.rb +3 -0
  36. data/lib/jira.rb +33 -0
  37. data/lib/tasks/generate.rake +18 -0
  38. data/spec/integration/attachment_spec.rb +23 -0
  39. data/spec/integration/comment_spec.rb +55 -0
  40. data/spec/integration/component_spec.rb +42 -0
  41. data/spec/integration/field_spec.rb +35 -0
  42. data/spec/integration/issue_spec.rb +94 -0
  43. data/spec/integration/issuetype_spec.rb +26 -0
  44. data/spec/integration/priority_spec.rb +27 -0
  45. data/spec/integration/project_spec.rb +56 -0
  46. data/spec/integration/status_spec.rb +27 -0
  47. data/spec/integration/transition_spec.rb +52 -0
  48. data/spec/integration/user_spec.rb +25 -0
  49. data/spec/integration/version_spec.rb +43 -0
  50. data/spec/integration/worklog_spec.rb +55 -0
  51. data/spec/jira/base_factory_spec.rb +46 -0
  52. data/spec/jira/base_spec.rb +586 -0
  53. data/spec/jira/client_spec.rb +188 -0
  54. data/spec/jira/has_many_proxy_spec.rb +45 -0
  55. data/spec/jira/http_client_spec.rb +109 -0
  56. data/spec/jira/http_error_spec.rb +25 -0
  57. data/spec/jira/oauth_client_spec.rb +111 -0
  58. data/spec/jira/request_client_spec.rb +14 -0
  59. data/spec/jira/resource/attachment_spec.rb +20 -0
  60. data/spec/jira/resource/filter_spec.rb +97 -0
  61. data/spec/jira/resource/issue_spec.rb +107 -0
  62. data/spec/jira/resource/project_factory_spec.rb +13 -0
  63. data/spec/jira/resource/project_spec.rb +70 -0
  64. data/spec/jira/resource/worklog_spec.rb +24 -0
  65. data/spec/mock_responses/attachment/10000.json +20 -0
  66. data/spec/mock_responses/component/10000.invalid.put.json +5 -0
  67. data/spec/mock_responses/component/10000.json +39 -0
  68. data/spec/mock_responses/component/10000.put.json +39 -0
  69. data/spec/mock_responses/component.post.json +28 -0
  70. data/spec/mock_responses/field/1.json +15 -0
  71. data/spec/mock_responses/field.json +32 -0
  72. data/spec/mock_responses/issue/10002/comment/10000.json +29 -0
  73. data/spec/mock_responses/issue/10002/comment/10000.put.json +29 -0
  74. data/spec/mock_responses/issue/10002/comment.json +65 -0
  75. data/spec/mock_responses/issue/10002/comment.post.json +29 -0
  76. data/spec/mock_responses/issue/10002/transitions.json +49 -0
  77. data/spec/mock_responses/issue/10002/transitions.post.json +1 -0
  78. data/spec/mock_responses/issue/10002/worklog/10000.json +31 -0
  79. data/spec/mock_responses/issue/10002/worklog/10000.put.json +30 -0
  80. data/spec/mock_responses/issue/10002/worklog.json +98 -0
  81. data/spec/mock_responses/issue/10002/worklog.post.json +30 -0
  82. data/spec/mock_responses/issue/10002.invalid.put.json +6 -0
  83. data/spec/mock_responses/issue/10002.json +126 -0
  84. data/spec/mock_responses/issue/10002.put.missing_field_update.json +6 -0
  85. data/spec/mock_responses/issue.json +1108 -0
  86. data/spec/mock_responses/issue.post.json +5 -0
  87. data/spec/mock_responses/issuetype/5.json +8 -0
  88. data/spec/mock_responses/issuetype.json +42 -0
  89. data/spec/mock_responses/priority/1.json +8 -0
  90. data/spec/mock_responses/priority.json +42 -0
  91. data/spec/mock_responses/project/SAMPLEPROJECT.issues.json +1108 -0
  92. data/spec/mock_responses/project/SAMPLEPROJECT.json +84 -0
  93. data/spec/mock_responses/project.json +12 -0
  94. data/spec/mock_responses/status/1.json +7 -0
  95. data/spec/mock_responses/status.json +37 -0
  96. data/spec/mock_responses/user_username=admin.json +17 -0
  97. data/spec/mock_responses/version/10000.invalid.put.json +5 -0
  98. data/spec/mock_responses/version/10000.json +11 -0
  99. data/spec/mock_responses/version/10000.put.json +7 -0
  100. data/spec/mock_responses/version.post.json +7 -0
  101. data/spec/spec_helper.rb +22 -0
  102. data/spec/support/clients_helper.rb +16 -0
  103. data/spec/support/matchers/have_attributes.rb +11 -0
  104. data/spec/support/matchers/have_many.rb +9 -0
  105. data/spec/support/matchers/have_one.rb +5 -0
  106. data/spec/support/shared_examples/integration.rb +190 -0
  107. metadata +301 -0
@@ -0,0 +1,30 @@
1
+ {
2
+ "self": "http://localhost:2990/jira/rest/api/2/issue/10002/worklog/10001",
3
+ "author": {
4
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
5
+ "name": "admin",
6
+ "emailAddress": "admin@example.com",
7
+ "avatarUrls": {
8
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
9
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
10
+ },
11
+ "displayName": "admin",
12
+ "active": true
13
+ },
14
+ "updateAuthor": {
15
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
16
+ "name": "admin",
17
+ "emailAddress": "admin@example.com",
18
+ "avatarUrls": {
19
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
20
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
21
+ },
22
+ "displayName": "admin",
23
+ "active": true
24
+ },
25
+ "created": "2012-01-12T16:08:58.529+1300",
26
+ "updated": "2012-01-12T16:11:22.266+1300",
27
+ "started": "2012-01-12T16:08:58.529+1300",
28
+ "timeSpent": "4d",
29
+ "id": "10001"
30
+ }
@@ -0,0 +1,98 @@
1
+ {
2
+ "startAt": 0,
3
+ "maxResults": 3,
4
+ "total": 3,
5
+ "worklogs": [
6
+ {
7
+ "self": "http://localhost:2990/jira/rest/api/2/issue/10002/worklog/10000",
8
+ "author": {
9
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
10
+ "name": "admin",
11
+ "emailAddress": "admin@example.com",
12
+ "avatarUrls": {
13
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
14
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
15
+ },
16
+ "displayName": "admin",
17
+ "active": true
18
+ },
19
+ "updateAuthor": {
20
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
21
+ "name": "admin",
22
+ "emailAddress": "admin@example.com",
23
+ "avatarUrls": {
24
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
25
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
26
+ },
27
+ "displayName": "admin",
28
+ "active": true
29
+ },
30
+ "comment": "Some epic work.",
31
+ "created": "2012-01-11T13:33:25.604+1300",
32
+ "updated": "2012-01-11T13:33:25.604+1300",
33
+ "started": "2012-01-11T13:33:00.000+1300",
34
+ "timeSpent": "18w 2d",
35
+ "id": "10000"
36
+ },
37
+ {
38
+ "self": "http://localhost:2990/jira/rest/api/2/issue/10002/worklog/10001",
39
+ "author": {
40
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
41
+ "name": "admin",
42
+ "emailAddress": "admin@example.com",
43
+ "avatarUrls": {
44
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
45
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
46
+ },
47
+ "displayName": "admin",
48
+ "active": true
49
+ },
50
+ "updateAuthor": {
51
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
52
+ "name": "admin",
53
+ "emailAddress": "admin@example.com",
54
+ "avatarUrls": {
55
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
56
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
57
+ },
58
+ "displayName": "admin",
59
+ "active": true
60
+ },
61
+ "created": "2012-01-12T16:08:58.529+1300",
62
+ "updated": "2012-01-12T16:11:22.266+1300",
63
+ "started": "2012-01-12T16:08:58.529+1300",
64
+ "timeSpent": "4d",
65
+ "id": "10001"
66
+ },
67
+ {
68
+ "self": "http://localhost:2990/jira/rest/api/2/issue/10002/worklog/10002",
69
+ "author": {
70
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
71
+ "name": "admin",
72
+ "emailAddress": "admin@example.com",
73
+ "avatarUrls": {
74
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
75
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
76
+ },
77
+ "displayName": "admin",
78
+ "active": true
79
+ },
80
+ "updateAuthor": {
81
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
82
+ "name": "admin",
83
+ "emailAddress": "admin@example.com",
84
+ "avatarUrls": {
85
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
86
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
87
+ },
88
+ "displayName": "admin",
89
+ "active": true
90
+ },
91
+ "created": "2012-01-12T16:20:39.542+1300",
92
+ "updated": "2012-01-12T16:20:39.542+1300",
93
+ "started": "2012-01-12T16:20:39.541+1300",
94
+ "timeSpent": "3d",
95
+ "id": "10002"
96
+ }
97
+ ]
98
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "self": "http://localhost:2990/jira/rest/api/2/issue/10002/worklog/10001",
3
+ "author": {
4
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
5
+ "name": "admin",
6
+ "emailAddress": "admin@example.com",
7
+ "avatarUrls": {
8
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
9
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
10
+ },
11
+ "displayName": "admin",
12
+ "active": true
13
+ },
14
+ "updateAuthor": {
15
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
16
+ "name": "admin",
17
+ "emailAddress": "admin@example.com",
18
+ "avatarUrls": {
19
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
20
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
21
+ },
22
+ "displayName": "admin",
23
+ "active": true
24
+ },
25
+ "created": "2012-01-12T16:08:58.529+1300",
26
+ "updated": "2012-01-12T16:08:58.529+1300",
27
+ "started": "2012-01-12T16:08:58.529+1300",
28
+ "timeSpent": "2d",
29
+ "id": "10001"
30
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "errorMessages": [],
3
+ "errors": {
4
+ "invalid": "Field 'invalid' is not valid for this operation."
5
+ }
6
+ }
@@ -0,0 +1,126 @@
1
+ {
2
+ "expand": "renderedFields,names,schema,transitions,editmeta,changelog",
3
+ "id": "10002",
4
+ "self": "http://localhost:2990/jira/rest/api/2/issue/10002",
5
+ "key": "SAMPLEPROJECT-1",
6
+ "fields": {
7
+ "summary": "Sample Issue",
8
+ "progress": {
9
+ "progress": 0,
10
+ "total": 0
11
+ },
12
+ "timetracking": {},
13
+ "issuetype": {
14
+ "self": "http://localhost:2990/jira/rest/api/2/issuetype/3",
15
+ "id": "3",
16
+ "description": "A task that needs to be done.",
17
+ "iconUrl": "http://localhost:2990/jira/images/icons/task.gif",
18
+ "name": "Task",
19
+ "subtask": false
20
+ },
21
+ "votes": {
22
+ "self": "http://localhost:2990/jira/rest/api/2/issue/SAMPLEPROJECT-1/votes",
23
+ "votes": 0,
24
+ "hasVoted": false
25
+ },
26
+ "resolution": null,
27
+ "fixVersions": [],
28
+ "resolutiondate": null,
29
+ "timespent": null,
30
+ "reporter": {
31
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
32
+ "name": "admin",
33
+ "emailAddress": "admin@example.com",
34
+ "avatarUrls": {
35
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
36
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
37
+ },
38
+ "displayName": "admin",
39
+ "active": true
40
+ },
41
+ "aggregatetimeoriginalestimate": null,
42
+ "updated": "2011-12-14T10:26:06.030+1300",
43
+ "created": "2011-12-14T10:26:06.030+1300",
44
+ "description": null,
45
+ "priority": {
46
+ "self": "http://localhost:2990/jira/rest/api/2/priority/3",
47
+ "iconUrl": "http://localhost:2990/jira/images/icons/priority_major.gif",
48
+ "name": "Major",
49
+ "id": "3"
50
+ },
51
+ "duedate": "2011-12-14",
52
+ "issuelinks": [],
53
+ "watches": {
54
+ "self": "http://localhost:2990/jira/rest/api/2/issue/SAMPLEPROJECT-1/watchers",
55
+ "watchCount": 0,
56
+ "isWatching": false
57
+ },
58
+ "worklog": {
59
+ "startAt": 0,
60
+ "maxResults": 0,
61
+ "total": 0,
62
+ "worklogs": []
63
+ },
64
+ "subtasks": [],
65
+ "status": {
66
+ "self": "http://localhost:2990/jira/rest/api/2/status/1",
67
+ "description": "The issue is open and ready for the assignee to start work on it.",
68
+ "iconUrl": "http://localhost:2990/jira/images/icons/status_open.gif",
69
+ "name": "Open",
70
+ "id": "1"
71
+ },
72
+ "labels": [],
73
+ "workratio": -1,
74
+ "assignee": {
75
+ "self": "http://localhost:2990/jira/rest/api/2/user?username=admin",
76
+ "name": "admin",
77
+ "emailAddress": "admin@example.com",
78
+ "avatarUrls": {
79
+ "16x16": "http://localhost:2990/jira/secure/useravatar?size=small&avatarId=10122",
80
+ "48x48": "http://localhost:2990/jira/secure/useravatar?avatarId=10122"
81
+ },
82
+ "displayName": "admin",
83
+ "active": true
84
+ },
85
+ "attachment": [],
86
+ "aggregatetimeestimate": null,
87
+ "project": {
88
+ "self": "http://localhost:2990/jira/rest/api/2/project/SAMPLEPROJECT",
89
+ "id": "10001",
90
+ "key": "SAMPLEPROJECT",
91
+ "name": "Sample Project for Developing RoR RESTful API",
92
+ "avatarUrls": {
93
+ "16x16": "http://localhost:2990/jira/secure/projectavatar?size=small&pid=10001&avatarId=10011",
94
+ "48x48": "http://localhost:2990/jira/secure/projectavatar?pid=10001&avatarId=10011"
95
+ }
96
+ },
97
+ "versions": [],
98
+ "environment": null,
99
+ "timeestimate": null,
100
+ "aggregateprogress": {
101
+ "progress": 0,
102
+ "total": 0
103
+ },
104
+ "components": [
105
+ {
106
+ "self": "http://localhost:2990/jira/rest/api/2/component/10001",
107
+ "id": "10001",
108
+ "name": "Jamflam"
109
+ },
110
+ {
111
+ "self": "http://localhost:2990/jira/rest/api/2/component/10000",
112
+ "id": "10000",
113
+ "name": "Jammy",
114
+ "description": "Description!"
115
+ }
116
+ ],
117
+ "comment": {
118
+ "startAt": 0,
119
+ "maxResults": 0,
120
+ "total": 0,
121
+ "comments": []
122
+ },
123
+ "timeoriginalestimate": null,
124
+ "aggregatetimespent": null
125
+ }
126
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "errorMessages": [
3
+ "one of 'fields' or 'update' required"
4
+ ],
5
+ "errors": {}
6
+ }