docker-client 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/README.md +3 -1
- data/Rakefile +18 -0
- data/lib/docker/error.rb +1 -0
- data/lib/docker/error/image_not_found.rb +7 -0
- data/lib/docker/resource/container.rb +10 -0
- data/lib/docker/resource/image.rb +43 -0
- data/lib/docker/version.rb +1 -1
- data/spec/cassettes/Docker_Connection/returns_a_stream.yml +171 -0
- data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_a_basic_request.yml +3 -12
- data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_get_request.yml +3 -77
- data/spec/cassettes/Docker_Connection/returns_a_valid_response_for_post_request.yml +189 -0
- data/spec/cassettes/Docker_Connection/returns_status_404_for_non_existent_path.yml +2 -2
- data/spec/cassettes/Docker_Connection/sets_given_query_parameters.yml +2 -2
- data/spec/cassettes/Docker_Connection/sets_given_request_headers.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/attach/raises_an_exception_for_an_unknown_container.yml +30 -0
- data/spec/cassettes/Docker_Resource_Container/changes/inspects_the_container_s_filesystem_changes.yml +210 -0
- data/spec/cassettes/Docker_Resource_Container/commit/creates_a_new_image_from_the_container_s_changes.yml +199 -0
- data/spec/cassettes/Docker_Resource_Container/commit/raises_an_exception_for_an_unknown_container.yml +31 -0
- data/spec/cassettes/Docker_Resource_Container/create/raises_an_exception_when_called_with_invalid_options.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/create/with_many_settings.yml +3 -3
- data/spec/cassettes/Docker_Resource_Container/create/with_minimal_settings.yml +3 -3
- data/spec/cassettes/Docker_Resource_Container/kill/raises_an_exception_for_an_unknow_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/kill/the_container.yml +189 -0
- data/spec/cassettes/Docker_Resource_Container/lists/all_running_containers.yml +7 -17
- data/spec/cassettes/Docker_Resource_Container/lists/limit_last_created_containers.yml +5 -5
- data/spec/cassettes/Docker_Resource_Container/lists/non-running_processes_too.yml +10 -85
- data/spec/cassettes/Docker_Resource_Container/lists/processes_before_a_certain_created_container.yml +303 -0
- data/spec/cassettes/Docker_Resource_Container/lists/processes_since_a_certain_created_container.yml +217 -0
- data/spec/cassettes/Docker_Resource_Container/logs/raises_an_exception_for_an_unknown_container.yml +31 -0
- data/spec/cassettes/Docker_Resource_Container/logs/returns_the_stderr_of_a_container.yml +154 -0
- data/spec/cassettes/Docker_Resource_Container/logs/returns_the_stdout_of_a_container.yml +154 -0
- data/spec/cassettes/Docker_Resource_Container/remove/deletes_the_container.yml +189 -0
- data/spec/cassettes/Docker_Resource_Container/remove/raises_an_exception_with_an_invalid_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/restarts/raises_an_exception_for_an_unknown_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/restarts/the_container.yml +189 -0
- data/spec/cassettes/Docker_Resource_Container/shows/the_low_level_details.yml +315 -0
- data/spec/cassettes/Docker_Resource_Container/start/brings_a_container_into_state_running.yml +189 -0
- data/spec/cassettes/Docker_Resource_Container/start/raises_an_exception_for_an_unknown_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/stop/halts_a_container.yml +189 -0
- data/spec/cassettes/Docker_Resource_Container/stop/raises_an_exception_for_an_unknown_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Container/wait/blocks_until_the_container_stops.yml +196 -0
- data/spec/cassettes/Docker_Resource_Container/wait/raises_an_exception_for_an_unknown_container.yml +2 -2
- data/spec/cassettes/Docker_Resource_Image/history/.yml +33 -0
- data/spec/cassettes/Docker_Resource_Image/history/size/.yml +33 -0
- data/spec/cassettes/Docker_Resource_Image/history/step/.yml +33 -0
- data/spec/cassettes/Docker_Resource_Image/list/.yml +44 -0
- data/spec/cassettes/Docker_Resource_Image/list/includes_latest_base_image.yml +44 -0
- data/spec/cassettes/Docker_Resource_Image/list/size/.yml +44 -0
- data/spec/cassettes/Docker_Resource_Image/remove/deletes_the_image.yml +192 -0
- data/spec/cassettes/Docker_Resource_Image/remove/raises_an_exception_for_an_unknown_image.yml +31 -0
- data/spec/cassettes/Docker_Resource_Image/show/.yml +42 -0
- data/spec/cassettes/Docker_Resource_Image/show/raises_an_exception_for_an_unknown_image.yml +31 -0
- data/spec/cassettes/Docker_Resource_Image/tag/an_image_into_a_repository.yml +30 -0
- data/spec/cassettes/Docker_Resource_Image/tag/raises_an_exception_for_an_unknown_image.yml +31 -0
- data/spec/cassettes/test_setup/commit_container.yml +423 -0
- data/spec/cassettes/test_setup/create_container__command_/bin/sh_-c_while_true_do_echo_hello_world_sleep_1_done_.yml +33 -0
- data/spec/cassettes/test_setup/create_container_connection_post.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_attach.yml +34 -0
- data/spec/cassettes/test_setup/create_container_container_changes.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_commit.yml +33 -0
- data/spec/cassettes/test_setup/create_container_container_kill.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_lists1.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_lists2.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_logs.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_remove.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_restarts.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_shows.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_start.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_stop.yml +3 -3
- data/spec/cassettes/test_setup/create_container_container_wait.yml +3 -3
- data/spec/cassettes/test_setup/create_container_test-image.yml +33 -0
- data/spec/cassettes/test_setup/create_container_test-returns-a-stream.yml +34 -0
- data/spec/cassettes/test_setup/create_container_test-tag.yml +33 -0
- data/spec/cassettes/test_setup/delete_container.yml +3727 -0
- data/spec/cassettes/test_setup/delete_image.yml +409 -0
- data/spec/cassettes/test_setup/start_container.yml +2813 -0
- data/spec/cassettes/test_setup/wait_on_container.yml +1080 -0
- data/spec/docker/connection_spec.rb +1 -1
- data/spec/docker/resource/container_spec.rb +26 -11
- data/spec/docker/resource/image_spec.rb +104 -0
- data/spec/helpers.rb +31 -2
- metadata +55 -2
data/spec/cassettes/Docker_Resource_Container/wait/raises_an_exception_for_an_unknown_container.yml
CHANGED
@@ -18,7 +18,7 @@ http_interactions:
|
|
18
18
|
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
19
19
|
!binary "RGF0ZQ==":
|
20
20
|
- !binary |-
|
21
|
-
|
21
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozNzo1MCBHTVQ=
|
22
22
|
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
23
23
|
- !binary |-
|
24
24
|
Y2h1bmtlZA==
|
@@ -27,5 +27,5 @@ http_interactions:
|
|
27
27
|
string: !binary |-
|
28
28
|
Tm8gc3VjaCBjb250YWluZXI6IGludmFsaWRfaWQK
|
29
29
|
http_version:
|
30
|
-
recorded_at:
|
30
|
+
recorded_at: Mon, 03 Jun 2013 21:37:50 GMT
|
31
31
|
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://10.0.5.5:4243/images/base/history
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: !binary |-
|
14
|
+
T0s=
|
15
|
+
headers:
|
16
|
+
!binary "Q29udGVudC1UeXBl":
|
17
|
+
- !binary |-
|
18
|
+
YXBwbGljYXRpb24vanNvbg==
|
19
|
+
!binary "RGF0ZQ==":
|
20
|
+
- !binary |-
|
21
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozODowMSBHTVQ=
|
22
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
23
|
+
- !binary |-
|
24
|
+
Y2h1bmtlZA==
|
25
|
+
body:
|
26
|
+
encoding: ASCII-8BIT
|
27
|
+
string: !binary |-
|
28
|
+
W3siSWQiOiJiNzUwZmU3OTI2OWQiLCJDcmVhdGVkIjoxMzY0MTAyNjU4LCJD
|
29
|
+
cmVhdGVkQnkiOiIvYmluL2Jhc2gifSx7IklkIjoiMjdjZjc4NDE0NzA5Iiwi
|
30
|
+
Q3JlYXRlZCI6MTM2NDA2ODM5MX1d
|
31
|
+
http_version:
|
32
|
+
recorded_at: Mon, 03 Jun 2013 21:38:01 GMT
|
33
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://10.0.5.5:4243/images/base/history
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: !binary |-
|
14
|
+
T0s=
|
15
|
+
headers:
|
16
|
+
!binary "Q29udGVudC1UeXBl":
|
17
|
+
- !binary |-
|
18
|
+
YXBwbGljYXRpb24vanNvbg==
|
19
|
+
!binary "RGF0ZQ==":
|
20
|
+
- !binary |-
|
21
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozODowMSBHTVQ=
|
22
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
23
|
+
- !binary |-
|
24
|
+
Y2h1bmtlZA==
|
25
|
+
body:
|
26
|
+
encoding: ASCII-8BIT
|
27
|
+
string: !binary |-
|
28
|
+
W3siSWQiOiJiNzUwZmU3OTI2OWQiLCJDcmVhdGVkIjoxMzY0MTAyNjU4LCJD
|
29
|
+
cmVhdGVkQnkiOiIvYmluL2Jhc2gifSx7IklkIjoiMjdjZjc4NDE0NzA5Iiwi
|
30
|
+
Q3JlYXRlZCI6MTM2NDA2ODM5MX1d
|
31
|
+
http_version:
|
32
|
+
recorded_at: Mon, 03 Jun 2013 21:38:01 GMT
|
33
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://10.0.5.5:4243/images/base/history
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: !binary |-
|
14
|
+
T0s=
|
15
|
+
headers:
|
16
|
+
!binary "Q29udGVudC1UeXBl":
|
17
|
+
- !binary |-
|
18
|
+
YXBwbGljYXRpb24vanNvbg==
|
19
|
+
!binary "RGF0ZQ==":
|
20
|
+
- !binary |-
|
21
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozODowMiBHTVQ=
|
22
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
23
|
+
- !binary |-
|
24
|
+
Y2h1bmtlZA==
|
25
|
+
body:
|
26
|
+
encoding: ASCII-8BIT
|
27
|
+
string: !binary |-
|
28
|
+
W3siSWQiOiJiNzUwZmU3OTI2OWQiLCJDcmVhdGVkIjoxMzY0MTAyNjU4LCJD
|
29
|
+
cmVhdGVkQnkiOiIvYmluL2Jhc2gifSx7IklkIjoiMjdjZjc4NDE0NzA5Iiwi
|
30
|
+
Q3JlYXRlZCI6MTM2NDA2ODM5MX1d
|
31
|
+
http_version:
|
32
|
+
recorded_at: Mon, 03 Jun 2013 21:38:02 GMT
|
33
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,44 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://10.0.5.5:4243/images/json?all=true
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: !binary |-
|
14
|
+
T0s=
|
15
|
+
headers:
|
16
|
+
!binary "Q29udGVudC1UeXBl":
|
17
|
+
- !binary |-
|
18
|
+
YXBwbGljYXRpb24vanNvbg==
|
19
|
+
!binary "RGF0ZQ==":
|
20
|
+
- !binary |-
|
21
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozNzo1OCBHTVQ=
|
22
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
23
|
+
- !binary |-
|
24
|
+
Y2h1bmtlZA==
|
25
|
+
body:
|
26
|
+
encoding: ASCII-8BIT
|
27
|
+
string: !binary |-
|
28
|
+
W3siUmVwb3NpdG9yeSI6ImJhc2UiLCJUYWciOiJ1YnVudHUtcXVhbnRsIiwi
|
29
|
+
SWQiOiJiNzUwZmU3OTI2OWQyZWM5YTNjNTkzZWYwNWI0MzMyYjFkMWEwMmE2
|
30
|
+
MmI0YWNjYjJjMjFkNTg5ZmYyZjVmMmRjIiwiQ3JlYXRlZCI6MTM2NDEwMjY1
|
31
|
+
OH0seyJSZXBvc2l0b3J5IjoiYmFzZSIsIlRhZyI6InVidW50dS0xMi4xMCIs
|
32
|
+
IklkIjoiYjc1MGZlNzkyNjlkMmVjOWEzYzU5M2VmMDViNDMzMmIxZDFhMDJh
|
33
|
+
NjJiNGFjY2IyYzIxZDU4OWZmMmY1ZjJkYyIsIkNyZWF0ZWQiOjEzNjQxMDI2
|
34
|
+
NTh9LHsiUmVwb3NpdG9yeSI6ImJhc2UiLCJUYWciOiJsYXRlc3QiLCJJZCI6
|
35
|
+
ImI3NTBmZTc5MjY5ZDJlYzlhM2M1OTNlZjA1YjQzMzJiMWQxYTAyYTYyYjRh
|
36
|
+
Y2NiMmMyMWQ1ODlmZjJmNWYyZGMiLCJDcmVhdGVkIjoxMzY0MTAyNjU4fSx7
|
37
|
+
IlJlcG9zaXRvcnkiOiJiYXNlIiwiVGFnIjoidWJ1bnR1LXF1YW50YWwiLCJJ
|
38
|
+
ZCI6ImI3NTBmZTc5MjY5ZDJlYzlhM2M1OTNlZjA1YjQzMzJiMWQxYTAyYTYy
|
39
|
+
YjRhY2NiMmMyMWQ1ODlmZjJmNWYyZGMiLCJDcmVhdGVkIjoxMzY0MTAyNjU4
|
40
|
+
fSx7IklkIjoiMjdjZjc4NDE0NzA5OTU0NSIsIkNyZWF0ZWQiOjEzNjQwNjgz
|
41
|
+
OTF9XQ==
|
42
|
+
http_version:
|
43
|
+
recorded_at: Mon, 03 Jun 2013 21:37:58 GMT
|
44
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,44 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://10.0.5.5:4243/images/json?all=true
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: !binary |-
|
14
|
+
T0s=
|
15
|
+
headers:
|
16
|
+
!binary "Q29udGVudC1UeXBl":
|
17
|
+
- !binary |-
|
18
|
+
YXBwbGljYXRpb24vanNvbg==
|
19
|
+
!binary "RGF0ZQ==":
|
20
|
+
- !binary |-
|
21
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozNzo1OCBHTVQ=
|
22
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
23
|
+
- !binary |-
|
24
|
+
Y2h1bmtlZA==
|
25
|
+
body:
|
26
|
+
encoding: ASCII-8BIT
|
27
|
+
string: !binary |-
|
28
|
+
W3siUmVwb3NpdG9yeSI6ImJhc2UiLCJUYWciOiJ1YnVudHUtcXVhbnRsIiwi
|
29
|
+
SWQiOiJiNzUwZmU3OTI2OWQyZWM5YTNjNTkzZWYwNWI0MzMyYjFkMWEwMmE2
|
30
|
+
MmI0YWNjYjJjMjFkNTg5ZmYyZjVmMmRjIiwiQ3JlYXRlZCI6MTM2NDEwMjY1
|
31
|
+
OH0seyJSZXBvc2l0b3J5IjoiYmFzZSIsIlRhZyI6InVidW50dS0xMi4xMCIs
|
32
|
+
IklkIjoiYjc1MGZlNzkyNjlkMmVjOWEzYzU5M2VmMDViNDMzMmIxZDFhMDJh
|
33
|
+
NjJiNGFjY2IyYzIxZDU4OWZmMmY1ZjJkYyIsIkNyZWF0ZWQiOjEzNjQxMDI2
|
34
|
+
NTh9LHsiUmVwb3NpdG9yeSI6ImJhc2UiLCJUYWciOiJsYXRlc3QiLCJJZCI6
|
35
|
+
ImI3NTBmZTc5MjY5ZDJlYzlhM2M1OTNlZjA1YjQzMzJiMWQxYTAyYTYyYjRh
|
36
|
+
Y2NiMmMyMWQ1ODlmZjJmNWYyZGMiLCJDcmVhdGVkIjoxMzY0MTAyNjU4fSx7
|
37
|
+
IlJlcG9zaXRvcnkiOiJiYXNlIiwiVGFnIjoidWJ1bnR1LXF1YW50YWwiLCJJ
|
38
|
+
ZCI6ImI3NTBmZTc5MjY5ZDJlYzlhM2M1OTNlZjA1YjQzMzJiMWQxYTAyYTYy
|
39
|
+
YjRhY2NiMmMyMWQ1ODlmZjJmNWYyZGMiLCJDcmVhdGVkIjoxMzY0MTAyNjU4
|
40
|
+
fSx7IklkIjoiMjdjZjc4NDE0NzA5OTU0NSIsIkNyZWF0ZWQiOjEzNjQwNjgz
|
41
|
+
OTF9XQ==
|
42
|
+
http_version:
|
43
|
+
recorded_at: Mon, 03 Jun 2013 21:37:58 GMT
|
44
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,44 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://10.0.5.5:4243/images/json?all=true
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: !binary |-
|
14
|
+
T0s=
|
15
|
+
headers:
|
16
|
+
!binary "Q29udGVudC1UeXBl":
|
17
|
+
- !binary |-
|
18
|
+
YXBwbGljYXRpb24vanNvbg==
|
19
|
+
!binary "RGF0ZQ==":
|
20
|
+
- !binary |-
|
21
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozNzo1OCBHTVQ=
|
22
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
23
|
+
- !binary |-
|
24
|
+
Y2h1bmtlZA==
|
25
|
+
body:
|
26
|
+
encoding: ASCII-8BIT
|
27
|
+
string: !binary |-
|
28
|
+
W3siUmVwb3NpdG9yeSI6ImJhc2UiLCJUYWciOiJ1YnVudHUtcXVhbnRsIiwi
|
29
|
+
SWQiOiJiNzUwZmU3OTI2OWQyZWM5YTNjNTkzZWYwNWI0MzMyYjFkMWEwMmE2
|
30
|
+
MmI0YWNjYjJjMjFkNTg5ZmYyZjVmMmRjIiwiQ3JlYXRlZCI6MTM2NDEwMjY1
|
31
|
+
OH0seyJSZXBvc2l0b3J5IjoiYmFzZSIsIlRhZyI6InVidW50dS0xMi4xMCIs
|
32
|
+
IklkIjoiYjc1MGZlNzkyNjlkMmVjOWEzYzU5M2VmMDViNDMzMmIxZDFhMDJh
|
33
|
+
NjJiNGFjY2IyYzIxZDU4OWZmMmY1ZjJkYyIsIkNyZWF0ZWQiOjEzNjQxMDI2
|
34
|
+
NTh9LHsiUmVwb3NpdG9yeSI6ImJhc2UiLCJUYWciOiJsYXRlc3QiLCJJZCI6
|
35
|
+
ImI3NTBmZTc5MjY5ZDJlYzlhM2M1OTNlZjA1YjQzMzJiMWQxYTAyYTYyYjRh
|
36
|
+
Y2NiMmMyMWQ1ODlmZjJmNWYyZGMiLCJDcmVhdGVkIjoxMzY0MTAyNjU4fSx7
|
37
|
+
IlJlcG9zaXRvcnkiOiJiYXNlIiwiVGFnIjoidWJ1bnR1LXF1YW50YWwiLCJJ
|
38
|
+
ZCI6ImI3NTBmZTc5MjY5ZDJlYzlhM2M1OTNlZjA1YjQzMzJiMWQxYTAyYTYy
|
39
|
+
YjRhY2NiMmMyMWQ1ODlmZjJmNWYyZGMiLCJDcmVhdGVkIjoxMzY0MTAyNjU4
|
40
|
+
fSx7IklkIjoiMjdjZjc4NDE0NzA5OTU0NSIsIkNyZWF0ZWQiOjEzNjQwNjgz
|
41
|
+
OTF9XQ==
|
42
|
+
http_version:
|
43
|
+
recorded_at: Mon, 03 Jun 2013 21:37:58 GMT
|
44
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,192 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: delete
|
5
|
+
uri: http://10.0.5.5:4243/images/5fde55b99d53
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 204
|
13
|
+
message: !binary |-
|
14
|
+
Tm8gQ29udGVudA==
|
15
|
+
headers:
|
16
|
+
!binary "RGF0ZQ==":
|
17
|
+
- !binary |-
|
18
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowMDoxNSBHTVQ=
|
19
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
20
|
+
- !binary |-
|
21
|
+
Y2h1bmtlZA==
|
22
|
+
!binary "Q29udGVudC1UeXBl":
|
23
|
+
- !binary |-
|
24
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
25
|
+
body:
|
26
|
+
encoding: ASCII-8BIT
|
27
|
+
string: !binary ""
|
28
|
+
http_version:
|
29
|
+
recorded_at: Mon, 03 Jun 2013 21:00:15 GMT
|
30
|
+
- request:
|
31
|
+
method: delete
|
32
|
+
uri: http://10.0.5.5:4243/images/8a919d79bea6
|
33
|
+
body:
|
34
|
+
encoding: US-ASCII
|
35
|
+
string: ''
|
36
|
+
headers: {}
|
37
|
+
response:
|
38
|
+
status:
|
39
|
+
code: 204
|
40
|
+
message: !binary |-
|
41
|
+
Tm8gQ29udGVudA==
|
42
|
+
headers:
|
43
|
+
!binary "RGF0ZQ==":
|
44
|
+
- !binary |-
|
45
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowNDo0OCBHTVQ=
|
46
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
47
|
+
- !binary |-
|
48
|
+
Y2h1bmtlZA==
|
49
|
+
!binary "Q29udGVudC1UeXBl":
|
50
|
+
- !binary |-
|
51
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
52
|
+
body:
|
53
|
+
encoding: ASCII-8BIT
|
54
|
+
string: !binary ""
|
55
|
+
http_version:
|
56
|
+
recorded_at: Mon, 03 Jun 2013 21:04:48 GMT
|
57
|
+
- request:
|
58
|
+
method: delete
|
59
|
+
uri: http://10.0.5.5:4243/images/043649a011c6
|
60
|
+
body:
|
61
|
+
encoding: US-ASCII
|
62
|
+
string: ''
|
63
|
+
headers: {}
|
64
|
+
response:
|
65
|
+
status:
|
66
|
+
code: 204
|
67
|
+
message: !binary |-
|
68
|
+
Tm8gQ29udGVudA==
|
69
|
+
headers:
|
70
|
+
!binary "RGF0ZQ==":
|
71
|
+
- !binary |-
|
72
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTowOTo0MCBHTVQ=
|
73
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
74
|
+
- !binary |-
|
75
|
+
Y2h1bmtlZA==
|
76
|
+
!binary "Q29udGVudC1UeXBl":
|
77
|
+
- !binary |-
|
78
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
79
|
+
body:
|
80
|
+
encoding: ASCII-8BIT
|
81
|
+
string: !binary ""
|
82
|
+
http_version:
|
83
|
+
recorded_at: Mon, 03 Jun 2013 21:09:39 GMT
|
84
|
+
- request:
|
85
|
+
method: delete
|
86
|
+
uri: http://10.0.5.5:4243/images/7a07766bd511
|
87
|
+
body:
|
88
|
+
encoding: US-ASCII
|
89
|
+
string: ''
|
90
|
+
headers: {}
|
91
|
+
response:
|
92
|
+
status:
|
93
|
+
code: 204
|
94
|
+
message: !binary |-
|
95
|
+
Tm8gQ29udGVudA==
|
96
|
+
headers:
|
97
|
+
!binary "RGF0ZQ==":
|
98
|
+
- !binary |-
|
99
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyMTo1NCBHTVQ=
|
100
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
101
|
+
- !binary |-
|
102
|
+
Y2h1bmtlZA==
|
103
|
+
!binary "Q29udGVudC1UeXBl":
|
104
|
+
- !binary |-
|
105
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
106
|
+
body:
|
107
|
+
encoding: ASCII-8BIT
|
108
|
+
string: !binary ""
|
109
|
+
http_version:
|
110
|
+
recorded_at: Mon, 03 Jun 2013 21:21:54 GMT
|
111
|
+
- request:
|
112
|
+
method: delete
|
113
|
+
uri: http://10.0.5.5:4243/images/495a6248820c
|
114
|
+
body:
|
115
|
+
encoding: US-ASCII
|
116
|
+
string: ''
|
117
|
+
headers: {}
|
118
|
+
response:
|
119
|
+
status:
|
120
|
+
code: 204
|
121
|
+
message: !binary |-
|
122
|
+
Tm8gQ29udGVudA==
|
123
|
+
headers:
|
124
|
+
!binary "RGF0ZQ==":
|
125
|
+
- !binary |-
|
126
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNToxNiBHTVQ=
|
127
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
128
|
+
- !binary |-
|
129
|
+
Y2h1bmtlZA==
|
130
|
+
!binary "Q29udGVudC1UeXBl":
|
131
|
+
- !binary |-
|
132
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
133
|
+
body:
|
134
|
+
encoding: ASCII-8BIT
|
135
|
+
string: !binary ""
|
136
|
+
http_version:
|
137
|
+
recorded_at: Mon, 03 Jun 2013 21:25:16 GMT
|
138
|
+
- request:
|
139
|
+
method: delete
|
140
|
+
uri: http://10.0.5.5:4243/images/8597e246b912
|
141
|
+
body:
|
142
|
+
encoding: US-ASCII
|
143
|
+
string: ''
|
144
|
+
headers: {}
|
145
|
+
response:
|
146
|
+
status:
|
147
|
+
code: 204
|
148
|
+
message: !binary |-
|
149
|
+
Tm8gQ29udGVudA==
|
150
|
+
headers:
|
151
|
+
!binary "RGF0ZQ==":
|
152
|
+
- !binary |-
|
153
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMToyNzozOSBHTVQ=
|
154
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
155
|
+
- !binary |-
|
156
|
+
Y2h1bmtlZA==
|
157
|
+
!binary "Q29udGVudC1UeXBl":
|
158
|
+
- !binary |-
|
159
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
160
|
+
body:
|
161
|
+
encoding: ASCII-8BIT
|
162
|
+
string: !binary ""
|
163
|
+
http_version:
|
164
|
+
recorded_at: Mon, 03 Jun 2013 21:27:39 GMT
|
165
|
+
- request:
|
166
|
+
method: delete
|
167
|
+
uri: http://10.0.5.5:4243/images/bfd495dad2e8
|
168
|
+
body:
|
169
|
+
encoding: US-ASCII
|
170
|
+
string: ''
|
171
|
+
headers: {}
|
172
|
+
response:
|
173
|
+
status:
|
174
|
+
code: 204
|
175
|
+
message: !binary |-
|
176
|
+
Tm8gQ29udGVudA==
|
177
|
+
headers:
|
178
|
+
!binary "RGF0ZQ==":
|
179
|
+
- !binary |-
|
180
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozODowMCBHTVQ=
|
181
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
182
|
+
- !binary |-
|
183
|
+
Y2h1bmtlZA==
|
184
|
+
!binary "Q29udGVudC1UeXBl":
|
185
|
+
- !binary |-
|
186
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
187
|
+
body:
|
188
|
+
encoding: ASCII-8BIT
|
189
|
+
string: !binary ""
|
190
|
+
http_version:
|
191
|
+
recorded_at: Mon, 03 Jun 2013 21:38:00 GMT
|
192
|
+
recorded_with: VCR 2.5.0
|
@@ -0,0 +1,31 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: delete
|
5
|
+
uri: http://10.0.5.5:4243/images/unknown-image
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 404
|
13
|
+
message: !binary |-
|
14
|
+
Tm90IEZvdW5k
|
15
|
+
headers:
|
16
|
+
!binary "Q29udGVudC1UeXBl":
|
17
|
+
- !binary |-
|
18
|
+
dGV4dC9wbGFpbjsgY2hhcnNldD11dGYtOA==
|
19
|
+
!binary "RGF0ZQ==":
|
20
|
+
- !binary |-
|
21
|
+
TW9uLCAwMyBKdW4gMjAxMyAyMTozODowMCBHTVQ=
|
22
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
23
|
+
- !binary |-
|
24
|
+
Y2h1bmtlZA==
|
25
|
+
body:
|
26
|
+
encoding: ASCII-8BIT
|
27
|
+
string: !binary |-
|
28
|
+
Tm8gc3VjaCBpbWFnZTogdW5rbm93bi1pbWFnZQo=
|
29
|
+
http_version:
|
30
|
+
recorded_at: Mon, 03 Jun 2013 21:38:00 GMT
|
31
|
+
recorded_with: VCR 2.5.0
|