runcible 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. data/.gitignore +18 -0
  2. data/Gemfile +19 -0
  3. data/LICENSE +22 -0
  4. data/README.md +29 -0
  5. data/Rakefile +37 -0
  6. data/lib/runcible.rb +25 -0
  7. data/lib/runcible/base.rb +113 -0
  8. data/lib/runcible/extensions/repository.rb +67 -0
  9. data/lib/runcible/oauth_setup.rb +29 -0
  10. data/lib/runcible/resources/repository.rb +82 -0
  11. data/lib/runcible/resources/role.rb +46 -0
  12. data/lib/runcible/resources/task.rb +49 -0
  13. data/lib/runcible/resources/user.rb +50 -0
  14. data/lib/runcible/version.rb +3 -0
  15. data/rel-eng/packages/.readme +3 -0
  16. data/rel-eng/tito.props +5 -0
  17. data/runcible.gemspec +17 -0
  18. data/runcible.spec +48 -0
  19. data/test/.gitkeep +0 -0
  20. data/test/integration/extensions/repository_test.rb +117 -0
  21. data/test/integration/fixtures/repositories/zoo5/.treeinfo +12 -0
  22. data/test/integration/fixtures/repositories/zoo5/CHANGESET +11 -0
  23. data/test/integration/fixtures/repositories/zoo5/PULP_MANIFEST +1 -0
  24. data/test/integration/fixtures/repositories/zoo5/cheetah-0.3-0.8.noarch.rpm +0 -0
  25. data/test/integration/fixtures/repositories/zoo5/create.sh +20 -0
  26. data/test/integration/fixtures/repositories/zoo5/elephant-0.3-0.8.noarch.rpm +0 -0
  27. data/test/integration/fixtures/repositories/zoo5/empty.iso +0 -0
  28. data/test/integration/fixtures/repositories/zoo5/giraffe-0.3-0.8.noarch.rpm +0 -0
  29. data/test/integration/fixtures/repositories/zoo5/images/test1.img +0 -0
  30. data/test/integration/fixtures/repositories/zoo5/images/test2.img +0 -0
  31. data/test/integration/fixtures/repositories/zoo5/lion-0.3-0.8.noarch.rpm +0 -0
  32. data/test/integration/fixtures/repositories/zoo5/monkey-0.3-0.8.noarch.rpm +0 -0
  33. data/test/integration/fixtures/repositories/zoo5/penguin-0.3-0.8.noarch.rpm +0 -0
  34. data/test/integration/fixtures/repositories/zoo5/repodata/06661e2a9839cf0beebcf409410ca4f93c09081f4e772fd0d03e1faf62705a11-comps.xml +39 -0
  35. data/test/integration/fixtures/repositories/zoo5/repodata/0c4d57a68f9a3b13dabc6f8b01ca8958aa796167cececee04717edfc26d02f2d-other.xml.gz +0 -0
  36. data/test/integration/fixtures/repositories/zoo5/repodata/298ce23f48b3613e030d19f3d9c2ff2df31c2f08479bdf94cebb87c208e48c0e-filelists.xml.gz +0 -0
  37. data/test/integration/fixtures/repositories/zoo5/repodata/32c0e38317aade0c057b173ff62344e912e1bd650409c6ac31aecee78e3413af-comps.xml.gz +0 -0
  38. data/test/integration/fixtures/repositories/zoo5/repodata/34d954906c7ce7aa2254e24d7be0a9049e0a2f436add023ca056123a2d48e30e-updateinfo.xml.gz +0 -0
  39. data/test/integration/fixtures/repositories/zoo5/repodata/63aedd074d9f0daf7c6be8c61f91d76a962bb6ceda86b9abd2140f154c320fa2-other.sqlite.bz2 +0 -0
  40. data/test/integration/fixtures/repositories/zoo5/repodata/69d65cdebffc6199d3adb3e38b06ca9abaae6c1c7366805099987b28f182178d-filelists.sqlite.bz2 +0 -0
  41. data/test/integration/fixtures/repositories/zoo5/repodata/799241a518a4a6b11a68f8e6fbdb719875f87832f60accc0851ced0d6a0497c6-updateinfo.xml.gz +0 -0
  42. data/test/integration/fixtures/repositories/zoo5/repodata/a4ea9fcdce31dc8673c7a9ba66c086bd6a16e1eff717e3896dd1cac444a1423c-primary.xml.gz +0 -0
  43. data/test/integration/fixtures/repositories/zoo5/repodata/fb9b9508e148368d0edf7e03dc905b343937fd958e6531cce6380933d18c3455-primary.sqlite.bz2 +0 -0
  44. data/test/integration/fixtures/repositories/zoo5/repodata/repomd.xml +75 -0
  45. data/test/integration/fixtures/repositories/zoo5/squirrel-0.3-0.8.noarch.rpm +0 -0
  46. data/test/integration/fixtures/repositories/zoo5/updateinfo.xml +26 -0
  47. data/test/integration/fixtures/repositories/zoo5/walrus-0.3-0.8.noarch.rpm +0 -0
  48. data/test/integration/fixtures/vcr_cassettes/extensions/pulp_repository_extensions.yml +137 -0
  49. data/test/integration/fixtures/vcr_cassettes/pulp_consumer.yml +1529 -0
  50. data/test/integration/fixtures/vcr_cassettes/pulp_consumer_group.yml +430 -0
  51. data/test/integration/fixtures/vcr_cassettes/pulp_consumer_helper.yml +120 -0
  52. data/test/integration/fixtures/vcr_cassettes/pulp_distribution.yml +77 -0
  53. data/test/integration/fixtures/vcr_cassettes/pulp_errata.yml +77 -0
  54. data/test/integration/fixtures/vcr_cassettes/pulp_filter.yml +233 -0
  55. data/test/integration/fixtures/vcr_cassettes/pulp_filter_helper.yml +81 -0
  56. data/test/integration/fixtures/vcr_cassettes/pulp_package.yml +155 -0
  57. data/test/integration/fixtures/vcr_cassettes/pulp_package_group.yml +40 -0
  58. data/test/integration/fixtures/vcr_cassettes/pulp_package_group_category.yml +40 -0
  59. data/test/integration/fixtures/vcr_cassettes/pulp_ping.yml +40 -0
  60. data/test/integration/fixtures/vcr_cassettes/pulp_repository.yml +1196 -0
  61. data/test/integration/fixtures/vcr_cassettes/pulp_repository_helper.yml +8659 -0
  62. data/test/integration/fixtures/vcr_cassettes/pulp_repository_sync.yml +215 -0
  63. data/test/integration/fixtures/vcr_cassettes/pulp_role.yml +133 -0
  64. data/test/integration/fixtures/vcr_cassettes/pulp_roles.yml +120 -0
  65. data/test/integration/fixtures/vcr_cassettes/pulp_task.yml +943 -0
  66. data/test/integration/fixtures/vcr_cassettes/pulp_user.yml +288 -0
  67. data/test/integration/fixtures/vcr_cassettes/pulp_user_helper.yml +195 -0
  68. data/test/integration/resources/helpers/consumer_helper.rb +49 -0
  69. data/test/integration/resources/helpers/filter_helper.rb +44 -0
  70. data/test/integration/resources/helpers/repository_helper.rb +127 -0
  71. data/test/integration/resources/pulp_consumer_group_test.rb +182 -0
  72. data/test/integration/resources/pulp_consumer_test.rb +200 -0
  73. data/test/integration/resources/pulp_distribution_test.rb +55 -0
  74. data/test/integration/resources/pulp_errata_test.rb +60 -0
  75. data/test/integration/resources/pulp_filter_test.rb +92 -0
  76. data/test/integration/resources/pulp_package_group_category_test.rb +55 -0
  77. data/test/integration/resources/pulp_package_group_test.rb +56 -0
  78. data/test/integration/resources/pulp_package_test.rb +79 -0
  79. data/test/integration/resources/pulp_ping_test.rb +31 -0
  80. data/test/integration/resources/pulp_repository_test.rb +307 -0
  81. data/test/integration/resources/pulp_role_test.rb +62 -0
  82. data/test/integration/resources/pulp_task_test.rb +79 -0
  83. data/test/integration/resources/pulp_user_test.rb +105 -0
  84. data/test/integration/test_runner.rb +113 -0
  85. data/test/integration/vcr_setup.rb +22 -0
  86. data/test/unit/test_base.rb +62 -0
  87. metadata +218 -0
@@ -0,0 +1,943 @@
1
+ ---
2
+ recorded_with: VCR 2.2.4
3
+ http_interactions:
4
+ - request:
5
+ method: delete
6
+ uri: https://localhost/pulp/api/tasks/2ed6feca-f242-11e1-b92f-bc305bcab086/
7
+ body:
8
+ string: ""
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip, deflate
12
+ Accept:
13
+ - "*/*; q=0.5, application/xml"
14
+ Authorization:
15
+ - OAuth oauth_consumer_key="katello", oauth_nonce="D1psnwDiySCsNBRRo4QCANjGdGdKabI24ATKxjJUwiQ", oauth_signature="1Wne48d1HkHiUzD5YFTn5nHfcH0%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1346290190", oauth_version="1.0"
16
+ Content-Type:
17
+ - application/json
18
+ Pulp-User:
19
+ - admin
20
+ Accept-Language:
21
+ - en
22
+ response:
23
+ status:
24
+ code: 202
25
+ message: Accepted
26
+ headers:
27
+ Server:
28
+ - Apache/2.2.22 (Fedora)
29
+ Date:
30
+ - Thu, 30 Aug 2012 01:29:50 GMT
31
+ Content-Type:
32
+ - application/json
33
+ Content-Length:
34
+ - "855"
35
+ Connection:
36
+ - close
37
+ body:
38
+ string: "{\"scheduled_time\": null, \"exception\": null, \"traceback\": null, \"job_id\": null, \"class_name\": null, \"start_time\": \"2012-08-29T21:29:46-04:00\", \"args\": [\"integration_test_id\"], \"method_name\": \"_sync\", \"finish_time\": \"2012-08-29T21:29:48-04:00\", \"state\": \"finished\", \"result\": true, \"scheduler\": \"immediate\", \"progress\": {\"status\": \"running\", \"size_total\": 17872, \"num_download\": 2, \"items_left\": 0, \"items_total\": 10, \"step\": \"Running Createrepo\", \"num_success\": 10, \"item_name\": \"\", \"item_type\": \"\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"id\": \"2ed6feca-f242-11e1-b92f-bc305bcab086\"}"
39
+ http_version:
40
+ recorded_at: Thu, 30 Aug 2012 01:29:50 GMT
41
+ - request:
42
+ method: get
43
+ uri: https://localhost/pulp/api/tasks/?id=2ed6feca-f242-11e1-b92f-bc305bcab086&state=current
44
+ body:
45
+ string: ""
46
+ headers:
47
+ Accept-Encoding:
48
+ - gzip, deflate
49
+ Accept:
50
+ - "*/*; q=0.5, application/xml"
51
+ Authorization:
52
+ - OAuth oauth_consumer_key="katello", oauth_nonce="hZzvVbvvWg8BoxnLBdbsxXC7dCkLjI7U0joBZ6d8Uw0", oauth_signature="QSMw7XoMvEZgSbqdagw%2FlDa%2FPnY%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1346290190", oauth_version="1.0"
53
+ Content-Type:
54
+ - application/json
55
+ Pulp-User:
56
+ - admin
57
+ Accept-Language:
58
+ - en
59
+ response:
60
+ status:
61
+ code: 200
62
+ message: OK
63
+ headers:
64
+ Server:
65
+ - Apache/2.2.22 (Fedora)
66
+ Date:
67
+ - Thu, 30 Aug 2012 01:29:50 GMT
68
+ Content-Type:
69
+ - application/json
70
+ Content-Length:
71
+ - "2294"
72
+ Connection:
73
+ - close
74
+ body:
75
+ string: "[{\"scheduled_time\": null, \"exception\": null, \"traceback\": null, \"job_id\": null, \"class_name\": null, \"start_time\": \"2012-08-29T21:29:46-04:00\", \"args\": [\"integration_test_id\"], \"method_name\": \"_sync\", \"finish_time\": \"2012-08-29T21:29:48-04:00\", \"state\": \"finished\", \"result\": true, \"scheduler\": \"immediate\", \"snapshot_id\": \"d1d60679-aa03-4b92-a03c-9c5dc7ec379f\", \"progress\": {\"status\": \"running\", \"size_total\": 17872, \"num_download\": 2, \"items_left\": 0, \"items_total\": 10, \"step\": \"Running Createrepo\", \"num_success\": 10, \"item_name\": \"\", \"item_type\": \"\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"id\": \"2ed6feca-f242-11e1-b92f-bc305bcab086\"}, {\"class_name\": null, \"start_time\": \"2012-08-29T21:29:46-04:00\", \"args\": [\"integration_test_id\"], \"task_string\": \"Task 2ed6feca-f242-11e1-b92f-bc305bcab086: _sync(integration_test_id, synchronizer=<pulp.server.api.synchronizers.YumSynchronizer object at 0x7f2d54120690>, skip={}, max_speed=None, threads=4, progress_callback=<bound method RepoSyncTask.progress_callback of <pulp.server.api.repo_sync_task.RepoSyncTask object at 0x7f2d540367d0>>)\", \"result\": true, \"id\": \"2ed6feca-f242-11e1-b92f-bc305bcab086\", \"scheduled_time\": \"2012-08-30T01:29:46Z\", \"exception\": null, \"task_type\": \"RepoSyncTask\", \"job_id\": null, \"finish_time\": \"2012-08-29T21:29:48-04:00\", \"_ns\": \"task_history\", \"traceback\": null, \"method_name\": \"_sync\", \"state\": \"finished\", \"kwargs\": {\"skip\": {}, \"max_speed\": null, \"threads\": 4}, \"progress\": {\"status\": \"running\", \"num_success\": 10, \"size_total\": 17872, \"num_download\": 2, \"item_name\": \"\", \"items_left\": 0, \"items_total\": 10, \"item_type\": \"\", \"step\": \"Running Createrepo\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"_id\": \"a7e6cdae-ce9d-4937-bd8c-d27290c22b26\", \"consecutive_failures\": 0}]"
76
+ http_version:
77
+ recorded_at: Thu, 30 Aug 2012 01:29:50 GMT
78
+ - request:
79
+ method: post
80
+ uri: https://localhost/pulp/api/tasks/2ed6feca-f242-11e1-b92f-bc305bcab086/cancel/
81
+ body:
82
+ string: ""
83
+ headers:
84
+ Accept-Encoding:
85
+ - gzip, deflate
86
+ Accept:
87
+ - "*/*; q=0.5, application/xml"
88
+ Authorization:
89
+ - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="8DBGiwSVw5DKF8QcREWz1e6cArVMmhw4Y1ZVqpen0Mo", oauth_signature="Mo8IDpNDEAXuSD49b65UbmAxU%2FE%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1346290190", oauth_version="1.0"
90
+ Content-Type:
91
+ - application/json
92
+ Pulp-User:
93
+ - admin
94
+ Content-Length:
95
+ - "0"
96
+ Accept-Language:
97
+ - en
98
+ response:
99
+ status:
100
+ code: 202
101
+ message: Accepted
102
+ headers:
103
+ Server:
104
+ - Apache/2.2.22 (Fedora)
105
+ Date:
106
+ - Thu, 30 Aug 2012 01:29:50 GMT
107
+ Content-Type:
108
+ - application/json
109
+ Content-Length:
110
+ - "855"
111
+ Connection:
112
+ - close
113
+ body:
114
+ string: "{\"scheduled_time\": null, \"exception\": null, \"traceback\": null, \"job_id\": null, \"class_name\": null, \"start_time\": \"2012-08-29T21:29:46-04:00\", \"args\": [\"integration_test_id\"], \"method_name\": \"_sync\", \"finish_time\": \"2012-08-29T21:29:48-04:00\", \"state\": \"finished\", \"result\": true, \"scheduler\": \"immediate\", \"progress\": {\"status\": \"running\", \"size_total\": 17872, \"num_download\": 2, \"items_left\": 0, \"items_total\": 10, \"step\": \"Running Createrepo\", \"num_success\": 10, \"item_name\": \"\", \"item_type\": \"\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"id\": \"2ed6feca-f242-11e1-b92f-bc305bcab086\"}"
115
+ http_version:
116
+ recorded_at: Thu, 30 Aug 2012 01:29:50 GMT
117
+ - request:
118
+ method: delete
119
+ uri: https://localhost/pulp/api/tasks/965d6f0f-f243-11e1-ad5e-bc305bcab086/
120
+ body:
121
+ string: ""
122
+ headers:
123
+ Accept-Encoding:
124
+ - gzip, deflate
125
+ Accept:
126
+ - application/json
127
+ Authorization:
128
+ - OAuth oauth_consumer_key="katello", oauth_nonce="N1oN3pSj0zRXNwbUOfrJrOltbXXaNzneJfJL1GRd3w", oauth_signature="ZY3t3y%2BaLToi4dp0%2BXZsTDi3FYc%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1346290794", oauth_version="1.0"
129
+ Content-Type:
130
+ - application/json
131
+ Pulp-User:
132
+ - admin
133
+ Accept-Language:
134
+ - en
135
+ response:
136
+ status:
137
+ code: 202
138
+ message: Accepted
139
+ headers:
140
+ Server:
141
+ - Apache/2.2.22 (Fedora)
142
+ Date:
143
+ - Thu, 30 Aug 2012 01:39:54 GMT
144
+ Content-Type:
145
+ - application/json
146
+ Content-Length:
147
+ - "855"
148
+ Connection:
149
+ - close
150
+ body:
151
+ string: "{\"scheduled_time\": null, \"exception\": null, \"traceback\": null, \"job_id\": null, \"class_name\": null, \"start_time\": \"2012-08-29T21:39:49-04:00\", \"args\": [\"integration_test_id\"], \"method_name\": \"_sync\", \"finish_time\": \"2012-08-29T21:39:51-04:00\", \"state\": \"finished\", \"result\": true, \"scheduler\": \"immediate\", \"progress\": {\"status\": \"running\", \"size_total\": 17872, \"num_download\": 0, \"items_left\": 0, \"items_total\": 10, \"step\": \"Running Createrepo\", \"num_success\": 10, \"item_name\": \"\", \"item_type\": \"\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"id\": \"965d6f0f-f243-11e1-ad5e-bc305bcab086\"}"
152
+ http_version:
153
+ recorded_at: Thu, 30 Aug 2012 01:39:54 GMT
154
+ - request:
155
+ method: get
156
+ uri: https://localhost/pulp/api/tasks/?id=965d6f0f-f243-11e1-ad5e-bc305bcab086&state=current
157
+ body:
158
+ string: ""
159
+ headers:
160
+ Accept-Encoding:
161
+ - gzip, deflate
162
+ Accept:
163
+ - application/json
164
+ Authorization:
165
+ - OAuth oauth_consumer_key="katello", oauth_nonce="fpvmNXKJxFLZbxiL1iB2WYbCWAw4ZazlnbIRy78mls", oauth_signature="r40gex06KzNz3RVJ17ojWIhxqDA%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1346290794", oauth_version="1.0"
166
+ Content-Type:
167
+ - application/json
168
+ Pulp-User:
169
+ - admin
170
+ Accept-Language:
171
+ - en
172
+ response:
173
+ status:
174
+ code: 200
175
+ message: OK
176
+ headers:
177
+ Server:
178
+ - Apache/2.2.22 (Fedora)
179
+ Date:
180
+ - Thu, 30 Aug 2012 01:39:54 GMT
181
+ Content-Type:
182
+ - application/json
183
+ Content-Length:
184
+ - "2294"
185
+ Connection:
186
+ - close
187
+ body:
188
+ string: "[{\"scheduled_time\": null, \"exception\": null, \"traceback\": null, \"job_id\": null, \"class_name\": null, \"start_time\": \"2012-08-29T21:39:49-04:00\", \"args\": [\"integration_test_id\"], \"method_name\": \"_sync\", \"finish_time\": \"2012-08-29T21:39:51-04:00\", \"state\": \"finished\", \"result\": true, \"scheduler\": \"immediate\", \"snapshot_id\": \"7db4d938-edc0-475f-8288-520aa40ed804\", \"progress\": {\"status\": \"running\", \"size_total\": 17872, \"num_download\": 0, \"items_left\": 0, \"items_total\": 10, \"step\": \"Running Createrepo\", \"num_success\": 10, \"item_name\": \"\", \"item_type\": \"\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"id\": \"965d6f0f-f243-11e1-ad5e-bc305bcab086\"}, {\"class_name\": null, \"start_time\": \"2012-08-29T21:39:49-04:00\", \"args\": [\"integration_test_id\"], \"task_string\": \"Task 965d6f0f-f243-11e1-ad5e-bc305bcab086: _sync(integration_test_id, synchronizer=<pulp.server.api.synchronizers.YumSynchronizer object at 0x7f2d4c16ef10>, skip={}, max_speed=None, threads=4, progress_callback=<bound method RepoSyncTask.progress_callback of <pulp.server.api.repo_sync_task.RepoSyncTask object at 0x7f2d4c16e590>>)\", \"result\": true, \"id\": \"965d6f0f-f243-11e1-ad5e-bc305bcab086\", \"scheduled_time\": \"2012-08-30T01:39:49Z\", \"exception\": null, \"task_type\": \"RepoSyncTask\", \"job_id\": null, \"finish_time\": \"2012-08-29T21:39:51-04:00\", \"_ns\": \"task_history\", \"traceback\": null, \"method_name\": \"_sync\", \"state\": \"finished\", \"kwargs\": {\"skip\": {}, \"max_speed\": null, \"threads\": 4}, \"progress\": {\"status\": \"running\", \"num_success\": 10, \"size_total\": 17872, \"num_download\": 0, \"item_name\": \"\", \"items_left\": 0, \"items_total\": 10, \"item_type\": \"\", \"step\": \"Running Createrepo\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"_id\": \"b0f564de-d20d-4f42-b824-6dd4ef353f7c\", \"consecutive_failures\": 0}]"
189
+ http_version:
190
+ recorded_at: Thu, 30 Aug 2012 01:39:54 GMT
191
+ - request:
192
+ method: post
193
+ uri: https://localhost/pulp/api/tasks/965d6f0f-f243-11e1-ad5e-bc305bcab086/cancel/
194
+ body:
195
+ string: ""
196
+ headers:
197
+ Accept-Encoding:
198
+ - gzip, deflate
199
+ Accept:
200
+ - application/json
201
+ Authorization:
202
+ - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="X2YAQnuFZ6dxzfmIZUPwDmt0bcY7pcR7esCdgngZk", oauth_signature="efRpYaQTk3v014VsfNFYOAGT2sg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1346290794", oauth_version="1.0"
203
+ Content-Type:
204
+ - application/json
205
+ Pulp-User:
206
+ - admin
207
+ Content-Length:
208
+ - "0"
209
+ Accept-Language:
210
+ - en
211
+ response:
212
+ status:
213
+ code: 202
214
+ message: Accepted
215
+ headers:
216
+ Server:
217
+ - Apache/2.2.22 (Fedora)
218
+ Date:
219
+ - Thu, 30 Aug 2012 01:39:54 GMT
220
+ Content-Type:
221
+ - application/json
222
+ Content-Length:
223
+ - "855"
224
+ Connection:
225
+ - close
226
+ body:
227
+ string: "{\"scheduled_time\": null, \"exception\": null, \"traceback\": null, \"job_id\": null, \"class_name\": null, \"start_time\": \"2012-08-29T21:39:49-04:00\", \"args\": [\"integration_test_id\"], \"method_name\": \"_sync\", \"finish_time\": \"2012-08-29T21:39:51-04:00\", \"state\": \"finished\", \"result\": true, \"scheduler\": \"immediate\", \"progress\": {\"status\": \"running\", \"size_total\": 17872, \"num_download\": 0, \"items_left\": 0, \"items_total\": 10, \"step\": \"Running Createrepo\", \"num_success\": 10, \"item_name\": \"\", \"item_type\": \"\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"id\": \"965d6f0f-f243-11e1-ad5e-bc305bcab086\"}"
228
+ http_version:
229
+ recorded_at: Thu, 30 Aug 2012 01:39:54 GMT
230
+ - request:
231
+ method: delete
232
+ uri: https://localhost/pulp/api/tasks/ed36e4fa-f244-11e1-b444-bc305bcab086/
233
+ body:
234
+ string: ""
235
+ headers:
236
+ Accept-Encoding:
237
+ - gzip, deflate
238
+ Accept:
239
+ - "*/*; q=0.5, application/xml"
240
+ Authorization:
241
+ - OAuth oauth_consumer_key="katello", oauth_nonce="rfkz9iWoQg1GHFiTZFmH8L0QeLVMhdYtIpGambPvM", oauth_signature="XGQW1Gn1%2BxidwPPI0xsfZTNZ5SI%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1346291454", oauth_version="1.0"
242
+ Content-Type:
243
+ - application/json
244
+ Pulp-User:
245
+ - admin
246
+ Accept-Language:
247
+ - en
248
+ response:
249
+ status:
250
+ code: 202
251
+ message: Accepted
252
+ headers:
253
+ Server:
254
+ - Apache/2.2.22 (Fedora)
255
+ Date:
256
+ - Thu, 30 Aug 2012 01:50:54 GMT
257
+ Content-Type:
258
+ - application/json
259
+ Content-Length:
260
+ - "855"
261
+ Connection:
262
+ - close
263
+ body:
264
+ string: "{\"scheduled_time\": null, \"exception\": null, \"traceback\": null, \"job_id\": null, \"class_name\": null, \"start_time\": \"2012-08-29T21:49:24-04:00\", \"args\": [\"integration_test_id\"], \"method_name\": \"_sync\", \"finish_time\": \"2012-08-29T21:49:26-04:00\", \"state\": \"finished\", \"result\": true, \"scheduler\": \"immediate\", \"progress\": {\"status\": \"running\", \"size_total\": 17872, \"num_download\": 2, \"items_left\": 0, \"items_total\": 10, \"step\": \"Running Createrepo\", \"num_success\": 10, \"item_name\": \"\", \"item_type\": \"\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"id\": \"ed36e4fa-f244-11e1-b444-bc305bcab086\"}"
265
+ http_version:
266
+ recorded_at: Thu, 30 Aug 2012 01:50:54 GMT
267
+ - request:
268
+ method: get
269
+ uri: https://localhost/pulp/api/tasks/?id=ed36e4fa-f244-11e1-b444-bc305bcab086&state=current
270
+ body:
271
+ string: ""
272
+ headers:
273
+ Accept-Encoding:
274
+ - gzip, deflate
275
+ Accept:
276
+ - "*/*; q=0.5, application/xml"
277
+ Authorization:
278
+ - OAuth oauth_consumer_key="katello", oauth_nonce="oK5HoEEdYJ0Dybv7jPWmOacAUzyalyjr2nfUmlRibA", oauth_signature="A9md6stLUSmny7gPbN19rYdkO5c%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1346291454", oauth_version="1.0"
279
+ Content-Type:
280
+ - application/json
281
+ Pulp-User:
282
+ - admin
283
+ Accept-Language:
284
+ - en
285
+ response:
286
+ status:
287
+ code: 200
288
+ message: OK
289
+ headers:
290
+ Server:
291
+ - Apache/2.2.22 (Fedora)
292
+ Date:
293
+ - Thu, 30 Aug 2012 01:50:54 GMT
294
+ Content-Type:
295
+ - application/json
296
+ Content-Length:
297
+ - "2294"
298
+ Connection:
299
+ - close
300
+ body:
301
+ string: "[{\"scheduled_time\": null, \"exception\": null, \"traceback\": null, \"job_id\": null, \"class_name\": null, \"start_time\": \"2012-08-29T21:49:24-04:00\", \"args\": [\"integration_test_id\"], \"method_name\": \"_sync\", \"finish_time\": \"2012-08-29T21:49:26-04:00\", \"state\": \"finished\", \"result\": true, \"scheduler\": \"immediate\", \"snapshot_id\": \"3943272c-924e-43ed-ad18-b208db6a1be2\", \"progress\": {\"status\": \"running\", \"size_total\": 17872, \"num_download\": 2, \"items_left\": 0, \"items_total\": 10, \"step\": \"Running Createrepo\", \"num_success\": 10, \"item_name\": \"\", \"item_type\": \"\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"id\": \"ed36e4fa-f244-11e1-b444-bc305bcab086\"}, {\"class_name\": null, \"start_time\": \"2012-08-29T21:49:24-04:00\", \"args\": [\"integration_test_id\"], \"task_string\": \"Task ed36e4fa-f244-11e1-b444-bc305bcab086: _sync(integration_test_id, synchronizer=<pulp.server.api.synchronizers.YumSynchronizer object at 0x7f2d4c16ec50>, skip={}, max_speed=None, threads=4, progress_callback=<bound method RepoSyncTask.progress_callback of <pulp.server.api.repo_sync_task.RepoSyncTask object at 0x7f2d4c147510>>)\", \"result\": true, \"id\": \"ed36e4fa-f244-11e1-b444-bc305bcab086\", \"scheduled_time\": \"2012-08-30T01:49:24Z\", \"exception\": null, \"task_type\": \"RepoSyncTask\", \"job_id\": null, \"finish_time\": \"2012-08-29T21:49:26-04:00\", \"_ns\": \"task_history\", \"traceback\": null, \"method_name\": \"_sync\", \"state\": \"finished\", \"kwargs\": {\"skip\": {}, \"max_speed\": null, \"threads\": 4}, \"progress\": {\"status\": \"running\", \"num_success\": 10, \"size_total\": 17872, \"num_download\": 2, \"item_name\": \"\", \"items_left\": 0, \"items_total\": 10, \"item_type\": \"\", \"step\": \"Running Createrepo\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"_id\": \"e9efdbd2-a97c-4981-a37b-3948bced1a02\", \"consecutive_failures\": 0}]"
302
+ http_version:
303
+ recorded_at: Thu, 30 Aug 2012 01:50:55 GMT
304
+ - request:
305
+ method: post
306
+ uri: https://localhost/pulp/api/tasks/ed36e4fa-f244-11e1-b444-bc305bcab086/cancel/
307
+ body:
308
+ string: ""
309
+ headers:
310
+ Accept-Encoding:
311
+ - gzip, deflate
312
+ Accept:
313
+ - "*/*; q=0.5, application/xml"
314
+ Authorization:
315
+ - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_consumer_key="katello", oauth_nonce="YxZb596bIsgkVMoS8OVL2f8ot0fUOoCzZ5KJ3AZU", oauth_signature="PvnFpBP1j3oauZH1MbirtO8PUJ4%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1346291455", oauth_version="1.0"
316
+ Content-Type:
317
+ - application/x-www-form-urlencoded
318
+ Pulp-User:
319
+ - admin
320
+ Content-Length:
321
+ - "0"
322
+ Accept-Language:
323
+ - en
324
+ response:
325
+ status:
326
+ code: 202
327
+ message: Accepted
328
+ headers:
329
+ Server:
330
+ - Apache/2.2.22 (Fedora)
331
+ Date:
332
+ - Thu, 30 Aug 2012 01:50:55 GMT
333
+ Content-Type:
334
+ - application/json
335
+ Content-Length:
336
+ - "855"
337
+ Connection:
338
+ - close
339
+ body:
340
+ string: "{\"scheduled_time\": null, \"exception\": null, \"traceback\": null, \"job_id\": null, \"class_name\": null, \"start_time\": \"2012-08-29T21:49:24-04:00\", \"args\": [\"integration_test_id\"], \"method_name\": \"_sync\", \"finish_time\": \"2012-08-29T21:49:26-04:00\", \"state\": \"finished\", \"result\": true, \"scheduler\": \"immediate\", \"progress\": {\"status\": \"running\", \"size_total\": 17872, \"num_download\": 2, \"items_left\": 0, \"items_total\": 10, \"step\": \"Running Createrepo\", \"num_success\": 10, \"item_name\": \"\", \"item_type\": \"\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 2, \"total_count\": 2, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 0}, \"rpm\": {\"num_success\": 8, \"total_count\": 8, \"items_left\": 0, \"size_left\": 0, \"num_error\": 0, \"total_size_bytes\": 17872}}, \"error_details\": [], \"num_error\": 0}, \"id\": \"ed36e4fa-f244-11e1-b444-bc305bcab086\"}"
341
+ http_version:
342
+ recorded_at: Thu, 30 Aug 2012 01:50:55 GMT
343
+ - request:
344
+ method: delete
345
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/
346
+ body:
347
+ string: ""
348
+ headers:
349
+ Accept-Encoding:
350
+ - gzip, deflate
351
+ Accept:
352
+ - application/json
353
+ Content-Type:
354
+ - application/json
355
+ response:
356
+ status:
357
+ code: 405
358
+ message: Method Not Allowed
359
+ headers:
360
+ Server:
361
+ - Apache/2.2.22 (Fedora)
362
+ Date:
363
+ - Mon, 10 Sep 2012 03:19:23 GMT
364
+ Content-Type:
365
+ - text/html; charset=UTF-8
366
+ Content-Length:
367
+ - "4"
368
+ Connection:
369
+ - close
370
+ Allow:
371
+ - GET
372
+ body:
373
+ string: None
374
+ http_version:
375
+ recorded_at: Mon, 10 Sep 2012 03:19:23 GMT
376
+ - request:
377
+ method: get
378
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/9fe34eeb-faf6-11e1-89c7-5254004526ad/
379
+ body:
380
+ string: ""
381
+ headers:
382
+ Accept-Encoding:
383
+ - gzip, deflate
384
+ Accept:
385
+ - application/json
386
+ Content-Type:
387
+ - application/json
388
+ response:
389
+ status:
390
+ code: 200
391
+ message: OK
392
+ headers:
393
+ Server:
394
+ - Apache/2.2.22 (Fedora)
395
+ Date:
396
+ - Mon, 10 Sep 2012 03:21:35 GMT
397
+ Content-Type:
398
+ - application/json
399
+ Content-Length:
400
+ - "809"
401
+ Connection:
402
+ - close
403
+ body:
404
+ string: "{\"task_group_id\": \"e0ff108f-bbe7-4797-840d-d998d5c57de5\", \"exception\": [\"MissingResource: Missing resource(s): resource_id=integration_test_id\\n\"], \"_href\": \"/pulp/api/v2/tasks/9fe34eeb-faf6-11e1-89c7-5254004526ad/\", \"task_id\": \"9fe34eeb-faf6-11e1-89c7-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T03:21:34Z\", \"traceback\": [\" File \\\"/usr/lib/python2.7/site-packages/pulp/server/dispatch/task.py\\\", line 130, in _run\\n result = call(*args, **kwargs)\\n\", \" File \\\"/usr/lib/python2.7/site-packages/pulp/server/managers/repo/sync.py\\\", line 124, in sync\\n raise MissingResource(repo_id)\\n\"], \"schedule_id\": null, \"finish_time\": \"2012-09-10T03:21:34Z\", \"state\": \"error\", \"result\": null, \"progress\": {}, \"response\": \"accepted\"}"
405
+ http_version:
406
+ recorded_at: Mon, 10 Sep 2012 03:21:35 GMT
407
+ - request:
408
+ method: delete
409
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/9fe34eeb-faf6-11e1-89c7-5254004526ad/
410
+ body:
411
+ string: ""
412
+ headers:
413
+ Accept-Encoding:
414
+ - gzip, deflate
415
+ Accept:
416
+ - application/json
417
+ Content-Type:
418
+ - application/json
419
+ response:
420
+ status:
421
+ code: 404
422
+ message: Not Found
423
+ headers:
424
+ Content-Encoding:
425
+ - utf-8
426
+ Server:
427
+ - Apache/2.2.22 (Fedora)
428
+ Date:
429
+ - Mon, 10 Sep 2012 03:21:36 GMT
430
+ Content-Type:
431
+ - application/json
432
+ Content-Length:
433
+ - "320"
434
+ Connection:
435
+ - close
436
+ body:
437
+ string: "{\"http_request_method\": \"DELETE\", \"exception\": null, \"error_message\": \"Missing resource(s): resource_id=9fe34eeb-faf6-11e1-89c7-5254004526ad\", \"_href\": \"/pulp/api/v2/tasks/9fe34eeb-faf6-11e1-89c7-5254004526ad/\", \"http_status\": 404, \"traceback\": null, \"resources\": {\"resource_id\": \"9fe34eeb-faf6-11e1-89c7-5254004526ad\"}}"
438
+ http_version:
439
+ recorded_at: Mon, 10 Sep 2012 03:21:36 GMT
440
+ - request:
441
+ method: get
442
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/e1d6cc7a-faf7-11e1-87b8-5254004526ad/
443
+ body:
444
+ string: ""
445
+ headers:
446
+ Accept-Encoding:
447
+ - gzip, deflate
448
+ Accept:
449
+ - application/json
450
+ Content-Type:
451
+ - application/json
452
+ response:
453
+ status:
454
+ code: 200
455
+ message: OK
456
+ headers:
457
+ Server:
458
+ - Apache/2.2.22 (Fedora)
459
+ Date:
460
+ - Mon, 10 Sep 2012 03:30:36 GMT
461
+ Content-Type:
462
+ - application/json
463
+ Content-Length:
464
+ - "809"
465
+ Connection:
466
+ - close
467
+ body:
468
+ string: "{\"task_group_id\": \"2c2347ae-3bde-4476-b0f7-24bf9ea9c570\", \"exception\": [\"MissingResource: Missing resource(s): resource_id=integration_test_id\\n\"], \"_href\": \"/pulp/api/v2/tasks/e1d6cc7a-faf7-11e1-87b8-5254004526ad/\", \"task_id\": \"e1d6cc7a-faf7-11e1-87b8-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T03:30:35Z\", \"traceback\": [\" File \\\"/usr/lib/python2.7/site-packages/pulp/server/dispatch/task.py\\\", line 130, in _run\\n result = call(*args, **kwargs)\\n\", \" File \\\"/usr/lib/python2.7/site-packages/pulp/server/managers/repo/sync.py\\\", line 124, in sync\\n raise MissingResource(repo_id)\\n\"], \"schedule_id\": null, \"finish_time\": \"2012-09-10T03:30:35Z\", \"state\": \"error\", \"result\": null, \"progress\": {}, \"response\": \"accepted\"}"
469
+ http_version:
470
+ recorded_at: Mon, 10 Sep 2012 03:30:36 GMT
471
+ - request:
472
+ method: delete
473
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/e1d6cc7a-faf7-11e1-87b8-5254004526ad/
474
+ body:
475
+ string: ""
476
+ headers:
477
+ Accept-Encoding:
478
+ - gzip, deflate
479
+ Accept:
480
+ - application/json
481
+ Content-Type:
482
+ - application/json
483
+ response:
484
+ status:
485
+ code: 404
486
+ message: Not Found
487
+ headers:
488
+ Content-Encoding:
489
+ - utf-8
490
+ Server:
491
+ - Apache/2.2.22 (Fedora)
492
+ Date:
493
+ - Mon, 10 Sep 2012 03:30:36 GMT
494
+ Content-Type:
495
+ - application/json
496
+ Content-Length:
497
+ - "320"
498
+ Connection:
499
+ - close
500
+ body:
501
+ string: "{\"http_request_method\": \"DELETE\", \"exception\": null, \"error_message\": \"Missing resource(s): resource_id=e1d6cc7a-faf7-11e1-87b8-5254004526ad\", \"_href\": \"/pulp/api/v2/tasks/e1d6cc7a-faf7-11e1-87b8-5254004526ad/\", \"http_status\": 404, \"traceback\": null, \"resources\": {\"resource_id\": \"e1d6cc7a-faf7-11e1-87b8-5254004526ad\"}}"
502
+ http_version:
503
+ recorded_at: Mon, 10 Sep 2012 03:30:36 GMT
504
+ - request:
505
+ method: get
506
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/ece18f75-faf7-11e1-9015-5254004526ad/
507
+ body:
508
+ string: ""
509
+ headers:
510
+ Accept-Encoding:
511
+ - gzip, deflate
512
+ Accept:
513
+ - application/json
514
+ Content-Type:
515
+ - application/json
516
+ response:
517
+ status:
518
+ code: 200
519
+ message: OK
520
+ headers:
521
+ Server:
522
+ - Apache/2.2.22 (Fedora)
523
+ Date:
524
+ - Mon, 10 Sep 2012 03:30:54 GMT
525
+ Content-Type:
526
+ - application/json
527
+ Content-Length:
528
+ - "809"
529
+ Connection:
530
+ - close
531
+ body:
532
+ string: "{\"task_group_id\": \"1b9deb31-b889-404c-9522-518656df13df\", \"exception\": [\"MissingResource: Missing resource(s): resource_id=integration_test_id\\n\"], \"_href\": \"/pulp/api/v2/tasks/ece18f75-faf7-11e1-9015-5254004526ad/\", \"task_id\": \"ece18f75-faf7-11e1-9015-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T03:30:53Z\", \"traceback\": [\" File \\\"/usr/lib/python2.7/site-packages/pulp/server/dispatch/task.py\\\", line 130, in _run\\n result = call(*args, **kwargs)\\n\", \" File \\\"/usr/lib/python2.7/site-packages/pulp/server/managers/repo/sync.py\\\", line 124, in sync\\n raise MissingResource(repo_id)\\n\"], \"schedule_id\": null, \"finish_time\": \"2012-09-10T03:30:53Z\", \"state\": \"error\", \"result\": null, \"progress\": {}, \"response\": \"accepted\"}"
533
+ http_version:
534
+ recorded_at: Mon, 10 Sep 2012 03:30:54 GMT
535
+ - request:
536
+ method: delete
537
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/ece18f75-faf7-11e1-9015-5254004526ad/
538
+ body:
539
+ string: ""
540
+ headers:
541
+ Accept-Encoding:
542
+ - gzip, deflate
543
+ Accept:
544
+ - application/json
545
+ Content-Type:
546
+ - application/json
547
+ response:
548
+ status:
549
+ code: 404
550
+ message: Not Found
551
+ headers:
552
+ Content-Encoding:
553
+ - utf-8
554
+ Server:
555
+ - Apache/2.2.22 (Fedora)
556
+ Date:
557
+ - Mon, 10 Sep 2012 03:31:12 GMT
558
+ Content-Type:
559
+ - application/json
560
+ Content-Length:
561
+ - "320"
562
+ Connection:
563
+ - close
564
+ body:
565
+ string: "{\"http_request_method\": \"DELETE\", \"exception\": null, \"error_message\": \"Missing resource(s): resource_id=ece18f75-faf7-11e1-9015-5254004526ad\", \"_href\": \"/pulp/api/v2/tasks/ece18f75-faf7-11e1-9015-5254004526ad/\", \"http_status\": 404, \"traceback\": null, \"resources\": {\"resource_id\": \"ece18f75-faf7-11e1-9015-5254004526ad\"}}"
566
+ http_version:
567
+ recorded_at: Mon, 10 Sep 2012 03:31:12 GMT
568
+ - request:
569
+ method: get
570
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/5da36875-fafd-11e1-b7a8-5254004526ad/
571
+ body:
572
+ string: ""
573
+ headers:
574
+ Accept-Encoding:
575
+ - gzip, deflate
576
+ Accept:
577
+ - application/json
578
+ Content-Type:
579
+ - application/json
580
+ response:
581
+ status:
582
+ code: 200
583
+ message: OK
584
+ headers:
585
+ Server:
586
+ - Apache/2.2.22 (Fedora)
587
+ Date:
588
+ - Mon, 10 Sep 2012 04:09:52 GMT
589
+ Content-Type:
590
+ - application/json
591
+ Content-Length:
592
+ - "1217"
593
+ Connection:
594
+ - close
595
+ body:
596
+ string: "{\"task_group_id\": \"eb55214e-ba59-4826-a4c0-1f459affe174\", \"exception\": null, \"_href\": \"/pulp/api/v2/tasks/5da36875-fafd-11e1-b7a8-5254004526ad/\", \"task_id\": \"5da36875-fafd-11e1-b7a8-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T04:09:50Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": null, \"state\": \"running\", \"result\": null, \"progress\": {\"yum_importer\": {\"content\": {\"num_success\": 11, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 11, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 3, \"size_total\": 0, \"items_left\": 0, \"items_total\": 3, \"size_left\": 0, \"num_error\": 0}, \"rpm\": {\"num_success\": 8, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"size_left\": 0, \"num_error\": 0}, \"delta_rpm\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}, \"file\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}}, \"error_details\": [], \"num_error\": 0}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"response\": \"accepted\"}"
597
+ http_version:
598
+ recorded_at: Mon, 10 Sep 2012 04:09:52 GMT
599
+ - request:
600
+ method: get
601
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/935a6e0f-fafd-11e1-97af-5254004526ad/
602
+ body:
603
+ string: ""
604
+ headers:
605
+ Accept-Encoding:
606
+ - gzip, deflate
607
+ Accept:
608
+ - application/json
609
+ Content-Type:
610
+ - application/json
611
+ response:
612
+ status:
613
+ code: 200
614
+ message: OK
615
+ headers:
616
+ Server:
617
+ - Apache/2.2.22 (Fedora)
618
+ Date:
619
+ - Mon, 10 Sep 2012 04:11:22 GMT
620
+ Content-Type:
621
+ - application/json
622
+ Content-Length:
623
+ - "1244"
624
+ Connection:
625
+ - close
626
+ body:
627
+ string: "{\"task_group_id\": \"8779e7cf-4e7c-42dd-899c-d1a3481bb0f2\", \"exception\": null, \"_href\": \"/pulp/api/v2/tasks/935a6e0f-fafd-11e1-97af-5254004526ad/\", \"task_id\": \"935a6e0f-fafd-11e1-97af-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T04:11:20Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T04:11:22Z\", \"state\": \"finished\", \"result\": null, \"progress\": {\"yum_importer\": {\"content\": {\"num_success\": 11, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 11, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 3, \"size_total\": 0, \"items_left\": 0, \"items_total\": 3, \"size_left\": 0, \"num_error\": 0}, \"rpm\": {\"num_success\": 8, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"size_left\": 0, \"num_error\": 0}, \"delta_rpm\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}, \"file\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}}, \"error_details\": [], \"num_error\": 0}, \"comps\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\", \"num_errata\": 2}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"response\": \"accepted\"}"
628
+ http_version:
629
+ recorded_at: Mon, 10 Sep 2012 04:11:22 GMT
630
+ - request:
631
+ method: get
632
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/b7ae4759-fafd-11e1-85c2-5254004526ad/
633
+ body:
634
+ string: ""
635
+ headers:
636
+ Accept-Encoding:
637
+ - gzip, deflate
638
+ Accept:
639
+ - application/json
640
+ Content-Type:
641
+ - application/json
642
+ response:
643
+ status:
644
+ code: 200
645
+ message: OK
646
+ headers:
647
+ Server:
648
+ - Apache/2.2.22 (Fedora)
649
+ Date:
650
+ - Mon, 10 Sep 2012 04:12:23 GMT
651
+ Content-Type:
652
+ - application/json
653
+ Content-Length:
654
+ - "1217"
655
+ Connection:
656
+ - close
657
+ body:
658
+ string: "{\"task_group_id\": \"d0d891bc-a111-4329-a43b-ec9a98b15e68\", \"exception\": null, \"_href\": \"/pulp/api/v2/tasks/b7ae4759-fafd-11e1-85c2-5254004526ad/\", \"task_id\": \"b7ae4759-fafd-11e1-85c2-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T04:12:21Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": null, \"state\": \"running\", \"result\": null, \"progress\": {\"yum_importer\": {\"content\": {\"num_success\": 11, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 11, \"state\": \"IN_PROGRESS\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 3, \"size_total\": 0, \"items_left\": 0, \"items_total\": 3, \"size_left\": 0, \"num_error\": 0}, \"rpm\": {\"num_success\": 8, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"size_left\": 0, \"num_error\": 0}, \"delta_rpm\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}, \"file\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}}, \"error_details\": [], \"num_error\": 0}, \"comps\": {\"state\": \"NOT_STARTED\"}, \"errata\": {\"state\": \"NOT_STARTED\"}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"response\": \"accepted\"}"
659
+ http_version:
660
+ recorded_at: Mon, 10 Sep 2012 04:12:23 GMT
661
+ - request:
662
+ method: get
663
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/17788233-fafe-11e1-b987-5254004526ad/
664
+ body:
665
+ string: ""
666
+ headers:
667
+ Accept-Encoding:
668
+ - gzip, deflate
669
+ Accept:
670
+ - application/json
671
+ Content-Type:
672
+ - application/json
673
+ response:
674
+ status:
675
+ code: 200
676
+ message: OK
677
+ headers:
678
+ Server:
679
+ - Apache/2.2.22 (Fedora)
680
+ Date:
681
+ - Mon, 10 Sep 2012 04:15:04 GMT
682
+ Content-Type:
683
+ - application/json
684
+ Content-Length:
685
+ - "1244"
686
+ Connection:
687
+ - close
688
+ body:
689
+ string: "{\"task_group_id\": \"bd703f06-aba3-46a2-b5c2-5f1397ab8141\", \"exception\": null, \"_href\": \"/pulp/api/v2/tasks/17788233-fafe-11e1-b987-5254004526ad/\", \"task_id\": \"17788233-fafe-11e1-b987-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T04:15:02Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T04:15:04Z\", \"state\": \"finished\", \"result\": null, \"progress\": {\"yum_importer\": {\"content\": {\"num_success\": 11, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 11, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 3, \"size_total\": 0, \"items_left\": 0, \"items_total\": 3, \"size_left\": 0, \"num_error\": 0}, \"rpm\": {\"num_success\": 8, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"size_left\": 0, \"num_error\": 0}, \"delta_rpm\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}, \"file\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}}, \"error_details\": [], \"num_error\": 0}, \"comps\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\", \"num_errata\": 2}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"response\": \"accepted\"}"
690
+ http_version:
691
+ recorded_at: Mon, 10 Sep 2012 04:15:04 GMT
692
+ - request:
693
+ method: get
694
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/122dba8c-faff-11e1-a491-5254004526ad/
695
+ body:
696
+ string: ""
697
+ headers:
698
+ Accept-Encoding:
699
+ - gzip, deflate
700
+ Accept:
701
+ - application/json
702
+ Content-Type:
703
+ - application/json
704
+ response:
705
+ status:
706
+ code: 200
707
+ message: OK
708
+ headers:
709
+ Server:
710
+ - Apache/2.2.22 (Fedora)
711
+ Date:
712
+ - Mon, 10 Sep 2012 04:22:05 GMT
713
+ Content-Type:
714
+ - application/json
715
+ Content-Length:
716
+ - "1244"
717
+ Connection:
718
+ - close
719
+ body:
720
+ string: "{\"task_group_id\": \"4c5a62ce-2705-4d06-8df9-9088b905dfab\", \"exception\": null, \"_href\": \"/pulp/api/v2/tasks/122dba8c-faff-11e1-a491-5254004526ad/\", \"task_id\": \"122dba8c-faff-11e1-a491-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T04:22:02Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T04:22:05Z\", \"state\": \"finished\", \"result\": null, \"progress\": {\"yum_importer\": {\"content\": {\"num_success\": 11, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 11, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 3, \"size_total\": 0, \"items_left\": 0, \"items_total\": 3, \"size_left\": 0, \"num_error\": 0}, \"rpm\": {\"num_success\": 8, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"size_left\": 0, \"num_error\": 0}, \"delta_rpm\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}, \"file\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}}, \"error_details\": [], \"num_error\": 0}, \"comps\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\", \"num_errata\": 2}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"response\": \"accepted\"}"
721
+ http_version:
722
+ recorded_at: Mon, 10 Sep 2012 04:22:05 GMT
723
+ - request:
724
+ method: get
725
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/36711523-faff-11e1-9239-5254004526ad/
726
+ body:
727
+ string: ""
728
+ headers:
729
+ Accept-Encoding:
730
+ - gzip, deflate
731
+ Accept:
732
+ - application/json
733
+ Content-Type:
734
+ - application/json
735
+ response:
736
+ status:
737
+ code: 200
738
+ message: OK
739
+ headers:
740
+ Server:
741
+ - Apache/2.2.22 (Fedora)
742
+ Date:
743
+ - Mon, 10 Sep 2012 04:23:06 GMT
744
+ Content-Type:
745
+ - application/json
746
+ Content-Length:
747
+ - "1244"
748
+ Connection:
749
+ - close
750
+ body:
751
+ string: "{\"task_group_id\": \"ee06ee4c-5ffb-45d3-94db-5b4f9cf98984\", \"exception\": null, \"_href\": \"/pulp/api/v2/tasks/36711523-faff-11e1-9239-5254004526ad/\", \"task_id\": \"36711523-faff-11e1-9239-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T04:23:03Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T04:23:05Z\", \"state\": \"finished\", \"result\": null, \"progress\": {\"yum_importer\": {\"content\": {\"num_success\": 11, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 11, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 3, \"size_total\": 0, \"items_left\": 0, \"items_total\": 3, \"size_left\": 0, \"num_error\": 0}, \"rpm\": {\"num_success\": 8, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"size_left\": 0, \"num_error\": 0}, \"delta_rpm\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}, \"file\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}}, \"error_details\": [], \"num_error\": 0}, \"comps\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\", \"num_errata\": 2}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"response\": \"accepted\"}"
752
+ http_version:
753
+ recorded_at: Mon, 10 Sep 2012 04:23:06 GMT
754
+ - request:
755
+ method: get
756
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/48dcae5c-fb00-11e1-98a9-5254004526ad/
757
+ body:
758
+ string: ""
759
+ headers:
760
+ Accept-Encoding:
761
+ - gzip, deflate
762
+ Accept:
763
+ - application/json
764
+ Content-Type:
765
+ - application/json
766
+ response:
767
+ status:
768
+ code: 200
769
+ message: OK
770
+ headers:
771
+ Server:
772
+ - Apache/2.2.22 (Fedora)
773
+ Date:
774
+ - Mon, 10 Sep 2012 04:30:46 GMT
775
+ Content-Type:
776
+ - application/json
777
+ Content-Length:
778
+ - "1244"
779
+ Connection:
780
+ - close
781
+ body:
782
+ string: "{\"task_group_id\": \"ca5b6839-0549-4ddd-ad57-2efb0241c10f\", \"exception\": null, \"_href\": \"/pulp/api/v2/tasks/48dcae5c-fb00-11e1-98a9-5254004526ad/\", \"task_id\": \"48dcae5c-fb00-11e1-98a9-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T04:30:43Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T04:30:46Z\", \"state\": \"finished\", \"result\": null, \"progress\": {\"yum_importer\": {\"content\": {\"num_success\": 11, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 11, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 3, \"size_total\": 0, \"items_left\": 0, \"items_total\": 3, \"size_left\": 0, \"num_error\": 0}, \"rpm\": {\"num_success\": 8, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"size_left\": 0, \"num_error\": 0}, \"delta_rpm\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}, \"file\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}}, \"error_details\": [], \"num_error\": 0}, \"comps\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\", \"num_errata\": 2}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"response\": \"accepted\"}"
783
+ http_version:
784
+ recorded_at: Mon, 10 Sep 2012 04:30:46 GMT
785
+ - request:
786
+ method: delete
787
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/e2f39897-fb00-11e1-8a81-5254004526ad/
788
+ body:
789
+ string: ""
790
+ headers:
791
+ Accept-Encoding:
792
+ - gzip, deflate
793
+ Accept:
794
+ - application/json
795
+ Content-Type:
796
+ - application/json
797
+ response:
798
+ status:
799
+ code: 404
800
+ message: Not Found
801
+ headers:
802
+ Content-Encoding:
803
+ - utf-8
804
+ Server:
805
+ - Apache/2.2.22 (Fedora)
806
+ Date:
807
+ - Mon, 10 Sep 2012 04:35:05 GMT
808
+ Content-Type:
809
+ - application/json
810
+ Content-Length:
811
+ - "320"
812
+ Connection:
813
+ - close
814
+ body:
815
+ string: "{\"http_request_method\": \"DELETE\", \"exception\": null, \"error_message\": \"Missing resource(s): resource_id=e2f39897-fb00-11e1-8a81-5254004526ad\", \"_href\": \"/pulp/api/v2/tasks/e2f39897-fb00-11e1-8a81-5254004526ad/\", \"http_status\": 404, \"traceback\": null, \"resources\": {\"resource_id\": \"e2f39897-fb00-11e1-8a81-5254004526ad\"}}"
816
+ http_version:
817
+ recorded_at: Mon, 10 Sep 2012 04:35:05 GMT
818
+ - request:
819
+ method: get
820
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/ee993f85-fb00-11e1-96d5-5254004526ad/
821
+ body:
822
+ string: ""
823
+ headers:
824
+ Accept-Encoding:
825
+ - gzip, deflate
826
+ Accept:
827
+ - application/json
828
+ Content-Type:
829
+ - application/json
830
+ response:
831
+ status:
832
+ code: 200
833
+ message: OK
834
+ headers:
835
+ Server:
836
+ - Apache/2.2.22 (Fedora)
837
+ Date:
838
+ - Mon, 10 Sep 2012 04:35:25 GMT
839
+ Content-Type:
840
+ - application/json
841
+ Content-Length:
842
+ - "1244"
843
+ Connection:
844
+ - close
845
+ body:
846
+ string: "{\"task_group_id\": \"5f7dfea3-20e2-48e0-9535-4e4abbf7d804\", \"exception\": null, \"_href\": \"/pulp/api/v2/tasks/ee993f85-fb00-11e1-96d5-5254004526ad/\", \"task_id\": \"ee993f85-fb00-11e1-96d5-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T04:35:21Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T04:35:24Z\", \"state\": \"finished\", \"result\": null, \"progress\": {\"yum_importer\": {\"content\": {\"num_success\": 11, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 11, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 3, \"size_total\": 0, \"items_left\": 0, \"items_total\": 3, \"size_left\": 0, \"num_error\": 0}, \"rpm\": {\"num_success\": 8, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"size_left\": 0, \"num_error\": 0}, \"delta_rpm\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}, \"file\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}}, \"error_details\": [], \"num_error\": 0}, \"comps\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\", \"num_errata\": 2}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"response\": \"accepted\"}"
847
+ http_version:
848
+ recorded_at: Mon, 10 Sep 2012 04:35:25 GMT
849
+ - request:
850
+ method: get
851
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/
852
+ body:
853
+ string: ""
854
+ headers:
855
+ Accept-Encoding:
856
+ - gzip, deflate
857
+ Accept:
858
+ - application/json
859
+ Content-Type:
860
+ - application/json
861
+ response:
862
+ status:
863
+ code: 200
864
+ message: OK
865
+ headers:
866
+ Server:
867
+ - Apache/2.2.22 (Fedora)
868
+ Date:
869
+ - Mon, 10 Sep 2012 06:07:33 GMT
870
+ Content-Type:
871
+ - application/json
872
+ Content-Length:
873
+ - "4001"
874
+ Connection:
875
+ - close
876
+ body:
877
+ string: "[{\"task_group_id\": null, \"exception\": null, \"task_id\": \"c71d28d1-fb0d-11e1-8672-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:create\"], \"reasons\": [], \"start_time\": \"2012-09-10T06:07:19Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T06:07:19Z\", \"state\": \"finished\", \"result\": {\"scratchpad\": {}, \"display_name\": \"integration_test_id\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_count\": 0, \"_id\": {\"$oid\": \"504d8397ec6a6d29b4000b10\"}, \"id\": \"integration_test_id\", \"_href\": \"/pulp/api/v2/repositories/integration_test_id/\"}, \"progress\": {}, \"response\": \"accepted\"}, {\"task_group_id\": \"ace82d45-9557-4d93-969e-056099948c6b\", \"exception\": null, \"task_id\": \"c8280a3d-fb0d-11e1-8d47-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T06:07:20Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T06:07:23Z\", \"state\": \"finished\", \"result\": null, \"progress\": {\"yum_importer\": {\"content\": {\"num_success\": 11, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 11, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 3, \"size_total\": 0, \"items_left\": 0, \"items_total\": 3, \"size_left\": 0, \"num_error\": 0}, \"rpm\": {\"num_success\": 8, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"size_left\": 0, \"num_error\": 0}, \"delta_rpm\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}, \"file\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}}, \"error_details\": [], \"num_error\": 0}, \"comps\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\", \"num_errata\": 2}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"response\": \"accepted\"}, {\"task_group_id\": null, \"exception\": null, \"task_id\": \"ca32ee3d-fb0d-11e1-9aaa-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:delete\"], \"reasons\": [], \"start_time\": \"2012-09-10T06:07:24Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T06:07:24Z\", \"state\": \"finished\", \"result\": null, \"progress\": {}, \"response\": \"accepted\"}, {\"task_group_id\": null, \"exception\": null, \"task_id\": \"cc729bfd-fb0d-11e1-a967-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:create\"], \"reasons\": [], \"start_time\": \"2012-09-10T06:07:28Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T06:07:28Z\", \"state\": \"finished\", \"result\": {\"scratchpad\": {}, \"display_name\": \"integration_test_id\", \"description\": null, \"_ns\": \"repos\", \"notes\": {}, \"content_unit_count\": 0, \"_id\": {\"$oid\": \"504d83a0ec6a6d29b4000b36\"}, \"id\": \"integration_test_id\", \"_href\": \"/pulp/api/v2/repositories/integration_test_id/\"}, \"progress\": {}, \"response\": \"accepted\"}, {\"task_group_id\": \"7b116031-6ace-4d51-b7fb-6f8a3c16c3bb\", \"exception\": null, \"task_id\": \"cd95a69e-fb0d-11e1-b0da-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T06:07:30Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T06:07:32Z\", \"state\": \"finished\", \"result\": null, \"progress\": {\"yum_importer\": {\"content\": {\"num_success\": 11, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 11, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 3, \"size_total\": 0, \"items_left\": 0, \"items_total\": 3, \"size_left\": 0, \"num_error\": 0}, \"rpm\": {\"num_success\": 8, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"size_left\": 0, \"num_error\": 0}, \"delta_rpm\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}, \"file\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}}, \"error_details\": [], \"num_error\": 0}, \"comps\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\", \"num_errata\": 2}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"response\": \"accepted\"}]"
878
+ http_version:
879
+ recorded_at: Mon, 10 Sep 2012 06:07:33 GMT
880
+ - request:
881
+ method: delete
882
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/d38b7a61-fb0d-11e1-97ea-5254004526ad/
883
+ body:
884
+ string: ""
885
+ headers:
886
+ Accept-Encoding:
887
+ - gzip, deflate
888
+ Accept:
889
+ - application/json
890
+ Content-Type:
891
+ - application/json
892
+ response:
893
+ status:
894
+ code: 404
895
+ message: Not Found
896
+ headers:
897
+ Content-Encoding:
898
+ - utf-8
899
+ Server:
900
+ - Apache/2.2.22 (Fedora)
901
+ Date:
902
+ - Mon, 10 Sep 2012 06:07:42 GMT
903
+ Content-Type:
904
+ - application/json
905
+ Content-Length:
906
+ - "320"
907
+ Connection:
908
+ - close
909
+ body:
910
+ string: "{\"http_request_method\": \"DELETE\", \"exception\": null, \"error_message\": \"Missing resource(s): resource_id=d38b7a61-fb0d-11e1-97ea-5254004526ad\", \"_href\": \"/pulp/api/v2/tasks/d38b7a61-fb0d-11e1-97ea-5254004526ad/\", \"http_status\": 404, \"traceback\": null, \"resources\": {\"resource_id\": \"d38b7a61-fb0d-11e1-97ea-5254004526ad\"}}"
911
+ http_version:
912
+ recorded_at: Mon, 10 Sep 2012 06:07:43 GMT
913
+ - request:
914
+ method: get
915
+ uri: https://admin:admin@localhost/pulp/api/v2/tasks/ded0a3de-fb0d-11e1-a1c6-5254004526ad/
916
+ body:
917
+ string: ""
918
+ headers:
919
+ Accept-Encoding:
920
+ - gzip, deflate
921
+ Accept:
922
+ - application/json
923
+ Content-Type:
924
+ - application/json
925
+ response:
926
+ status:
927
+ code: 200
928
+ message: OK
929
+ headers:
930
+ Server:
931
+ - Apache/2.2.22 (Fedora)
932
+ Date:
933
+ - Mon, 10 Sep 2012 06:08:01 GMT
934
+ Content-Type:
935
+ - application/json
936
+ Content-Length:
937
+ - "1244"
938
+ Connection:
939
+ - close
940
+ body:
941
+ string: "{\"task_group_id\": \"b38fe514-168c-48f2-b7f0-a2eb4373c6a0\", \"exception\": null, \"_href\": \"/pulp/api/v2/tasks/ded0a3de-fb0d-11e1-a1c6-5254004526ad/\", \"task_id\": \"ded0a3de-fb0d-11e1-a1c6-5254004526ad\", \"tags\": [\"pulp:repository:integration_test_id\", \"pulp:action:sync\"], \"reasons\": [], \"start_time\": \"2012-09-10T06:07:58Z\", \"traceback\": null, \"schedule_id\": null, \"finish_time\": \"2012-09-10T06:08:01Z\", \"state\": \"finished\", \"result\": null, \"progress\": {\"yum_importer\": {\"content\": {\"num_success\": 11, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 11, \"state\": \"FINISHED\", \"size_left\": 0, \"details\": {\"tree_file\": {\"num_success\": 3, \"size_total\": 0, \"items_left\": 0, \"items_total\": 3, \"size_left\": 0, \"num_error\": 0}, \"rpm\": {\"num_success\": 8, \"size_total\": 17872, \"items_left\": 0, \"items_total\": 8, \"size_left\": 0, \"num_error\": 0}, \"delta_rpm\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}, \"file\": {\"num_success\": 0, \"size_total\": 0, \"items_left\": 0, \"items_total\": 0, \"size_left\": 0, \"num_error\": 0}}, \"error_details\": [], \"num_error\": 0}, \"comps\": {\"state\": \"FINISHED\"}, \"errata\": {\"state\": \"FINISHED\", \"num_errata\": 2}, \"metadata\": {\"state\": \"FINISHED\"}}}, \"response\": \"accepted\"}"
942
+ http_version:
943
+ recorded_at: Mon, 10 Sep 2012 06:08:01 GMT