ds_media_library 0.2.0 → 0.3.0
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.
- checksums.yaml +4 -4
- data/lib/ds_media_library/cucumber.rb +66 -0
- data/lib/ds_media_library/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 264dfaa7118effde6bf1cd9743b1487b44df1f54
|
4
|
+
data.tar.gz: 409ff27940c44dab5e57f4a388883fbe33440eee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f31b73fe7d7a928e7eb6a11764ee2f607f2ecddf264bc6c22b35c95de7c7502db8eb5782a68f48c00fdb51d6db6b70a04b6320969da1d07633bf78d7e17dac5d
|
7
|
+
data.tar.gz: ab4532654ccc05b9c51c4e9dc566654b7c1bfbb44e644f28bef4d63155f3672db370084632de6bddbaf24cdc2ff1013d55ff5bc7e6861a8d715f21217daf6a6e
|
@@ -0,0 +1,66 @@
|
|
1
|
+
Given "the following media folders exist:" do |table|
|
2
|
+
table.create! DSMediaLibrary::Folder do
|
3
|
+
belongs_to({ :parent_folder => :parent }, DSMediaLibrary::Folder)
|
4
|
+
end
|
5
|
+
end
|
6
|
+
|
7
|
+
Given "the following media files exist:" do |table|
|
8
|
+
table.create! DSNode::Resource do
|
9
|
+
belongs_to({ :parent_folder => :folder }, DSMediaLibrary::Folder)
|
10
|
+
file :file
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
When /^I open the media library for the "(.+?)"$/ do |field|
|
15
|
+
field = find_field(field)
|
16
|
+
field.find(:xpath, "..").find("label", text: "MEDIA LIBRARY").click
|
17
|
+
sleep 0.3 # wait for css animation
|
18
|
+
end
|
19
|
+
|
20
|
+
When "I close the media library" do
|
21
|
+
find(".dsml-modal-close").click
|
22
|
+
sleep 0.3 # wait for css animation
|
23
|
+
end
|
24
|
+
|
25
|
+
When /^I mark the "(.+?)" "(.+?)" media item for removal$/ do |label, value|
|
26
|
+
field = find_field(label)
|
27
|
+
within field.find(:xpath, "..").first("dl dfn", text: value) do
|
28
|
+
uncheck "Remove #{label.singularize.downcase}"
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
Then /^I should see "(.+?)" as the "(.+?)" media$/ do |value, label|
|
33
|
+
field = find_field(label)
|
34
|
+
actual = field.find(:xpath, "..").all("dl dt").map(&:text).join(", ")
|
35
|
+
expect(actual).to eq(value)
|
36
|
+
end
|
37
|
+
|
38
|
+
Then /^I should see the following "(.+?)" media library items:$/ do |label, table|
|
39
|
+
field = find_field(label)
|
40
|
+
actual = field.find(:xpath, "..").all("dl dt").map { |dt| [dt.text] }
|
41
|
+
table.diff! actual
|
42
|
+
end
|
43
|
+
|
44
|
+
Then /^I should see no "(.+?)" media$/ do |label|
|
45
|
+
field = find_field(label)
|
46
|
+
actual = field.find(:xpath, "..").all("dl dt").map(&:text)
|
47
|
+
expect(actual).to eq([])
|
48
|
+
end
|
49
|
+
|
50
|
+
Then "I should see the following media tree:" do |table|
|
51
|
+
def recurse_tree root, structure = [], prefix = ""
|
52
|
+
root.all(:xpath, "./li").each do |li|
|
53
|
+
if label = li.first("label")
|
54
|
+
structure << [prefix + label.text]
|
55
|
+
end
|
56
|
+
if root = li.first("ul")
|
57
|
+
new_prefix = prefix.empty? ? "- #{prefix}" : prefix + " "
|
58
|
+
structure = recurse_tree(root, structure, new_prefix)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
structure
|
62
|
+
end
|
63
|
+
|
64
|
+
table.diff! recurse_tree(find("#dsml-media-tree"))
|
65
|
+
end
|
66
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ds_media_library
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Micah Geisel
|
@@ -343,6 +343,7 @@ files:
|
|
343
343
|
- dummy/database.rb
|
344
344
|
- dummy/views.rb
|
345
345
|
- lib/ds_media_library.rb
|
346
|
+
- lib/ds_media_library/cucumber.rb
|
346
347
|
- lib/ds_media_library/engine.rb
|
347
348
|
- lib/ds_media_library/version.rb
|
348
349
|
- tmp/.keep
|