shoes-core 4.0.0.pre3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +31 -0
- data/README.md +8 -0
- data/Rakefile +1 -0
- data/bin/shoes +62 -0
- data/bin/shoes-guard +8 -0
- data/bin/shoes-picker +6 -0
- data/bin/shoes-stub +62 -0
- data/ext/install/Rakefile +29 -0
- data/ext/install/shoes.bat +15 -0
- data/fonts/Coolvetica.ttf +0 -0
- data/fonts/Lacuna.ttf +0 -0
- data/lib/rubygems_plugin.rb +24 -0
- data/lib/shoes.rb +1 -0
- data/lib/shoes/animation.rb +56 -0
- data/lib/shoes/app.rb +130 -0
- data/lib/shoes/arc.rb +25 -0
- data/lib/shoes/background.rb +20 -0
- data/lib/shoes/border.rb +20 -0
- data/lib/shoes/builtin_methods.rb +76 -0
- data/lib/shoes/button.rb +29 -0
- data/lib/shoes/check_button.rb +41 -0
- data/lib/shoes/color.rb +387 -0
- data/lib/shoes/common/background_element.rb +9 -0
- data/lib/shoes/common/changeable.rb +34 -0
- data/lib/shoes/common/clickable.rb +24 -0
- data/lib/shoes/common/inspect.rb +14 -0
- data/lib/shoes/common/positioning.rb +30 -0
- data/lib/shoes/common/registration.rb +31 -0
- data/lib/shoes/common/remove.rb +10 -0
- data/lib/shoes/common/state.rb +16 -0
- data/lib/shoes/common/style.rb +160 -0
- data/lib/shoes/common/style_normalizer.rb +16 -0
- data/lib/shoes/common/ui_element.rb +11 -0
- data/lib/shoes/common/visibility.rb +41 -0
- data/lib/shoes/configuration.rb +96 -0
- data/lib/shoes/core.rb +1 -0
- data/lib/shoes/core/version.rb +5 -0
- data/lib/shoes/dialog.rb +56 -0
- data/lib/shoes/dimension.rb +269 -0
- data/lib/shoes/dimensions.rb +203 -0
- data/lib/shoes/download.rb +130 -0
- data/lib/shoes/dsl.rb +656 -0
- data/lib/shoes/file_not_found_error.rb +4 -0
- data/lib/shoes/font.rb +50 -0
- data/lib/shoes/gradient.rb +31 -0
- data/lib/shoes/image.rb +53 -0
- data/lib/shoes/image_pattern.rb +12 -0
- data/lib/shoes/input_box.rb +59 -0
- data/lib/shoes/internal_app.rb +230 -0
- data/lib/shoes/key_event.rb +17 -0
- data/lib/shoes/line.rb +84 -0
- data/lib/shoes/link.rb +57 -0
- data/lib/shoes/link_hover.rb +5 -0
- data/lib/shoes/list_box.rb +50 -0
- data/lib/shoes/logger.rb +65 -0
- data/lib/shoes/logger/ruby.rb +16 -0
- data/lib/shoes/mock.rb +33 -0
- data/lib/shoes/mock/animation.rb +8 -0
- data/lib/shoes/mock/app.rb +49 -0
- data/lib/shoes/mock/arc.rb +9 -0
- data/lib/shoes/mock/background.rb +10 -0
- data/lib/shoes/mock/border.rb +7 -0
- data/lib/shoes/mock/button.rb +22 -0
- data/lib/shoes/mock/check.rb +24 -0
- data/lib/shoes/mock/clickable.rb +8 -0
- data/lib/shoes/mock/common_methods.rb +12 -0
- data/lib/shoes/mock/dialog.rb +13 -0
- data/lib/shoes/mock/download.rb +16 -0
- data/lib/shoes/mock/font.rb +15 -0
- data/lib/shoes/mock/image.rb +13 -0
- data/lib/shoes/mock/image_pattern.rb +8 -0
- data/lib/shoes/mock/input_box.rb +30 -0
- data/lib/shoes/mock/keypress.rb +11 -0
- data/lib/shoes/mock/keyrelease.rb +11 -0
- data/lib/shoes/mock/line.rb +14 -0
- data/lib/shoes/mock/link.rb +11 -0
- data/lib/shoes/mock/list_box.rb +19 -0
- data/lib/shoes/mock/oval.rb +11 -0
- data/lib/shoes/mock/packager.rb +13 -0
- data/lib/shoes/mock/progress.rb +10 -0
- data/lib/shoes/mock/radio.rb +27 -0
- data/lib/shoes/mock/rect.rb +14 -0
- data/lib/shoes/mock/shape.rb +20 -0
- data/lib/shoes/mock/slot.rb +16 -0
- data/lib/shoes/mock/sound.rb +8 -0
- data/lib/shoes/mock/star.rb +14 -0
- data/lib/shoes/mock/text_block.rb +36 -0
- data/lib/shoes/mock/timer.rb +8 -0
- data/lib/shoes/not_implemented_error.rb +4 -0
- data/lib/shoes/oval.rb +20 -0
- data/lib/shoes/packager.rb +26 -0
- data/lib/shoes/point.rb +54 -0
- data/lib/shoes/progress.rb +25 -0
- data/lib/shoes/radio.rb +15 -0
- data/lib/shoes/rect.rb +21 -0
- data/lib/shoes/renamed_delegate.rb +15 -0
- data/lib/shoes/shape.rb +159 -0
- data/lib/shoes/slot.rb +276 -0
- data/lib/shoes/slot_contents.rb +51 -0
- data/lib/shoes/sound.rb +18 -0
- data/lib/shoes/span.rb +16 -0
- data/lib/shoes/star.rb +50 -0
- data/lib/shoes/text.rb +24 -0
- data/lib/shoes/text_block.rb +142 -0
- data/lib/shoes/text_block_dimensions.rb +51 -0
- data/lib/shoes/timer.rb +14 -0
- data/lib/shoes/ui/cli.rb +67 -0
- data/lib/shoes/ui/picker.rb +47 -0
- data/lib/shoes/url.rb +44 -0
- data/lib/shoes/version.rb +3 -0
- data/lib/shoes/widget.rb +67 -0
- data/shoes-core.gemspec +22 -0
- data/spec/shoes/animation_spec.rb +71 -0
- data/spec/shoes/app_spec.rb +484 -0
- data/spec/shoes/arc_spec.rb +51 -0
- data/spec/shoes/background_spec.rb +47 -0
- data/spec/shoes/border_spec.rb +46 -0
- data/spec/shoes/builtin_methods_spec.rb +110 -0
- data/spec/shoes/button_spec.rb +44 -0
- data/spec/shoes/check_spec.rb +35 -0
- data/spec/shoes/color_spec.rb +408 -0
- data/spec/shoes/common/inspect_spec.rb +26 -0
- data/spec/shoes/common/remove_spec.rb +38 -0
- data/spec/shoes/common/style_normalizer_spec.rb +28 -0
- data/spec/shoes/common/style_spec.rb +147 -0
- data/spec/shoes/configuration_spec.rb +36 -0
- data/spec/shoes/constants_spec.rb +38 -0
- data/spec/shoes/dialog_spec.rb +171 -0
- data/spec/shoes/dimension_spec.rb +433 -0
- data/spec/shoes/dimensions_spec.rb +837 -0
- data/spec/shoes/download_spec.rb +146 -0
- data/spec/shoes/flow_spec.rb +133 -0
- data/spec/shoes/font_spec.rb +37 -0
- data/spec/shoes/framework_learning_spec.rb +30 -0
- data/spec/shoes/gradient_spec.rb +32 -0
- data/spec/shoes/helpers/fake_element.rb +17 -0
- data/spec/shoes/helpers/inspect_helpers.rb +5 -0
- data/spec/shoes/helpers/sample17_helper.rb +66 -0
- data/spec/shoes/image_spec.rb +68 -0
- data/spec/shoes/images/shoe.jpg +0 -0
- data/spec/shoes/input_box_spec.rb +80 -0
- data/spec/shoes/integration_spec.rb +20 -0
- data/spec/shoes/internal_app_spec.rb +141 -0
- data/spec/shoes/keypress_spec.rb +11 -0
- data/spec/shoes/keyrelease_spec.rb +12 -0
- data/spec/shoes/line_spec.rb +87 -0
- data/spec/shoes/link_spec.rb +118 -0
- data/spec/shoes/list_box_spec.rb +74 -0
- data/spec/shoes/logger/ruby_spec.rb +8 -0
- data/spec/shoes/logger_spec.rb +45 -0
- data/spec/shoes/oval_spec.rb +24 -0
- data/spec/shoes/packager_spec.rb +25 -0
- data/spec/shoes/point_spec.rb +71 -0
- data/spec/shoes/progress_spec.rb +54 -0
- data/spec/shoes/radio_spec.rb +32 -0
- data/spec/shoes/rect_spec.rb +39 -0
- data/spec/shoes/renamed_delegate_spec.rb +70 -0
- data/spec/shoes/shape_spec.rb +106 -0
- data/spec/shoes/shared_examples/button.rb +6 -0
- data/spec/shoes/shared_examples/changeable.rb +26 -0
- data/spec/shoes/shared_examples/clickable.rb +5 -0
- data/spec/shoes/shared_examples/common_methods.rb +35 -0
- data/spec/shoes/shared_examples/dimensions.rb +32 -0
- data/spec/shoes/shared_examples/dsl.rb +44 -0
- data/spec/shoes/shared_examples/dsl/animate.rb +29 -0
- data/spec/shoes/shared_examples/dsl/arc.rb +45 -0
- data/spec/shoes/shared_examples/dsl/background.rb +26 -0
- data/spec/shoes/shared_examples/dsl/border.rb +10 -0
- data/spec/shoes/shared_examples/dsl/button.rb +5 -0
- data/spec/shoes/shared_examples/dsl/cap.rb +6 -0
- data/spec/shoes/shared_examples/dsl/check.rb +11 -0
- data/spec/shoes/shared_examples/dsl/edit_box.rb +8 -0
- data/spec/shoes/shared_examples/dsl/edit_line.rb +8 -0
- data/spec/shoes/shared_examples/dsl/editable_element.rb +29 -0
- data/spec/shoes/shared_examples/dsl/fill.rb +27 -0
- data/spec/shoes/shared_examples/dsl/flow.rb +15 -0
- data/spec/shoes/shared_examples/dsl/gradient.rb +62 -0
- data/spec/shoes/shared_examples/dsl/image.rb +21 -0
- data/spec/shoes/shared_examples/dsl/line.rb +9 -0
- data/spec/shoes/shared_examples/dsl/nofill.rb +6 -0
- data/spec/shoes/shared_examples/dsl/nostroke.rb +6 -0
- data/spec/shoes/shared_examples/dsl/oval.rb +88 -0
- data/spec/shoes/shared_examples/dsl/pattern.rb +34 -0
- data/spec/shoes/shared_examples/dsl/progress.rb +7 -0
- data/spec/shoes/shared_examples/dsl/rect.rb +92 -0
- data/spec/shoes/shared_examples/dsl/rgb.rb +26 -0
- data/spec/shoes/shared_examples/dsl/shape.rb +57 -0
- data/spec/shoes/shared_examples/dsl/star.rb +111 -0
- data/spec/shoes/shared_examples/dsl/stroke.rb +30 -0
- data/spec/shoes/shared_examples/dsl/strokewidth.rb +19 -0
- data/spec/shoes/shared_examples/dsl/style.rb +32 -0
- data/spec/shoes/shared_examples/dsl/text_elements.rb +81 -0
- data/spec/shoes/shared_examples/dsl/video.rb +5 -0
- data/spec/shoes/shared_examples/dsl_app_context.rb +8 -0
- data/spec/shoes/shared_examples/hover_leave.rb +11 -0
- data/spec/shoes/shared_examples/parent.rb +6 -0
- data/spec/shoes/shared_examples/scroll.rb +41 -0
- data/spec/shoes/shared_examples/shared_element_method.rb +60 -0
- data/spec/shoes/shared_examples/slot.rb +394 -0
- data/spec/shoes/shared_examples/state.rb +19 -0
- data/spec/shoes/shared_examples/style.rb +82 -0
- data/spec/shoes/slot_spec.rb +186 -0
- data/spec/shoes/sound_spec.rb +15 -0
- data/spec/shoes/span_spec.rb +112 -0
- data/spec/shoes/spec_helper.rb +24 -0
- data/spec/shoes/stack_spec.rb +79 -0
- data/spec/shoes/star_spec.rb +48 -0
- data/spec/shoes/text_block_dimensions_spec.rb +75 -0
- data/spec/shoes/text_block_spec.rb +270 -0
- data/spec/shoes/url_spec.rb +68 -0
- data/spec/shoes/widget_spec.rb +70 -0
- data/spec/shoes_spec.rb +44 -0
- data/spec/spec_helper.rb +19 -0
- data/static/downloading.png +0 -0
- data/static/shoes-icon-blue.png +0 -0
- data/static/shoes-icon-brown.png +0 -0
- data/static/shoes-icon.png +0 -0
- metadata +366 -0
@@ -0,0 +1,146 @@
|
|
1
|
+
require 'shoes/spec_helper'
|
2
|
+
|
3
|
+
describe Shoes::Download do
|
4
|
+
include_context "dsl app"
|
5
|
+
|
6
|
+
let(:name) { "http://www.google.com/logos/nasa50th.gif" }
|
7
|
+
let(:response_body) { "NASA 50th logo" }
|
8
|
+
let(:response_status) {["200", "OK"]}
|
9
|
+
let(:response_headers) { { "content-length" => "42" }}
|
10
|
+
let(:opts) { {save: "nasa50th.gif"} }
|
11
|
+
|
12
|
+
subject(:download) { Shoes::Download.new app, parent, name, opts, &input_block }
|
13
|
+
|
14
|
+
let(:percent) {download.percent}
|
15
|
+
let(:length) {download.length}
|
16
|
+
let(:content_length) {download.content_length}
|
17
|
+
|
18
|
+
let(:bound_block) { Proc.new {} }
|
19
|
+
|
20
|
+
before do
|
21
|
+
expect(app.current_slot).to receive(:create_bound_block).at_least(1) { |blk| blk ? bound_block : nil }
|
22
|
+
|
23
|
+
stub_request(:get, name)
|
24
|
+
.to_return(:status => response_status, :body => response_body, :headers => response_headers)
|
25
|
+
end
|
26
|
+
|
27
|
+
after do
|
28
|
+
File.delete opts[:save] if File.exist? opts[:save]
|
29
|
+
end
|
30
|
+
|
31
|
+
context 'before it has been started' do
|
32
|
+
it 'is 0 percent' do
|
33
|
+
expect(percent).to eq(0)
|
34
|
+
end
|
35
|
+
|
36
|
+
it 'understands abort' do
|
37
|
+
expect(download).to respond_to(:abort)
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'has initial content_length of 1' do
|
41
|
+
expect(content_length).to eq(1)
|
42
|
+
end
|
43
|
+
|
44
|
+
it 'has initial length of 1' do
|
45
|
+
expect(length).to eq(1)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
context 'without a progress proc' do
|
50
|
+
before :each do
|
51
|
+
download.start
|
52
|
+
download.join_thread
|
53
|
+
end
|
54
|
+
|
55
|
+
it 'finishes' do
|
56
|
+
expect(download).to be_finished
|
57
|
+
end
|
58
|
+
|
59
|
+
it 'starts' do
|
60
|
+
expect(download).to be_started
|
61
|
+
end
|
62
|
+
|
63
|
+
it 'creates the file specified by save' do
|
64
|
+
expect(File.exist?(opts[:save])).to be_truthy
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
context 'with a progress proc' do
|
69
|
+
let(:progress_proc) {Proc.new {}}
|
70
|
+
let(:opts) { {save: "nasa50th.gif", progress: progress_proc} }
|
71
|
+
subject(:download) {Shoes::Download.new app, parent, name, opts}
|
72
|
+
|
73
|
+
before :each do
|
74
|
+
allow(download.gui).to receive :eval_block
|
75
|
+
download.start
|
76
|
+
download.join_thread
|
77
|
+
end
|
78
|
+
|
79
|
+
context 'with content length' do
|
80
|
+
it 'calls the progress proc from start, download and finish' do
|
81
|
+
expect(download.gui).to have_received(:eval_block).
|
82
|
+
with(bound_block, download).
|
83
|
+
exactly(3).times
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
context 'without content length' do
|
88
|
+
let(:response_headers) { Hash.new }
|
89
|
+
|
90
|
+
it 'does not call on progress, but called from content length and finish' do
|
91
|
+
expect(download.gui).to have_received(:eval_block).
|
92
|
+
with(bound_block, download).
|
93
|
+
twice
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
describe 'after it is finished' do
|
99
|
+
let(:result) {download}
|
100
|
+
let(:response) {download.response}
|
101
|
+
|
102
|
+
before :each do
|
103
|
+
allow(download.gui).to receive(:eval_block)
|
104
|
+
download.start
|
105
|
+
download.join_thread
|
106
|
+
end
|
107
|
+
|
108
|
+
context 'with a block' do
|
109
|
+
it 'calls the block with a result' do
|
110
|
+
expect(download.gui).to have_received(:eval_block).with(bound_block, result)
|
111
|
+
end
|
112
|
+
|
113
|
+
describe 'response object' do
|
114
|
+
it 'has headers hash' do
|
115
|
+
expect(response.headers).to eql(response_headers)
|
116
|
+
end
|
117
|
+
|
118
|
+
it 'has body text' do
|
119
|
+
expect(response.body).to eql(response_body)
|
120
|
+
end
|
121
|
+
|
122
|
+
it 'has status array' do
|
123
|
+
expect(response.status).to eql(response_status)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
context 'without a block' do
|
129
|
+
subject(:download) { Shoes::Download.new app, parent, name, opts }
|
130
|
+
|
131
|
+
it 'does not call the block' do
|
132
|
+
expect(download.gui).not_to have_received(:eval_block)
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
context 'with a finish proc' do
|
137
|
+
let(:opts) { {save: "nasa50th.gif", finish: input_block} }
|
138
|
+
subject(:download) { Shoes::Download.new app, parent, name, opts }
|
139
|
+
|
140
|
+
it 'calls the finish proc' do
|
141
|
+
expect(download.gui).to have_received(:eval_block).with(bound_block, subject)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
end
|
146
|
+
end
|
@@ -0,0 +1,133 @@
|
|
1
|
+
require 'shoes/spec_helper'
|
2
|
+
require 'shoes/helpers/fake_element'
|
3
|
+
|
4
|
+
describe Shoes::Flow do
|
5
|
+
include_context "dsl app"
|
6
|
+
|
7
|
+
subject(:flow) { Shoes::Flow.new(app, parent, input_opts, input_block) }
|
8
|
+
|
9
|
+
it_behaves_like "clickable object"
|
10
|
+
it_behaves_like "hover and leave events"
|
11
|
+
it_behaves_like "Slot"
|
12
|
+
|
13
|
+
describe "initialize" do
|
14
|
+
let(:input_opts) { {:width => 131, :height => 137} }
|
15
|
+
it "sets accessors" do
|
16
|
+
expect(flow.parent).to eq(parent)
|
17
|
+
expect(flow.width).to eq(131)
|
18
|
+
expect(flow.height).to eq(137)
|
19
|
+
expect(flow.blk).to eq(input_block)
|
20
|
+
end
|
21
|
+
|
22
|
+
describe 'margins' do
|
23
|
+
let(:input_opts) { {margin: 143} }
|
24
|
+
it 'sets the margins' do
|
25
|
+
expect(flow.margin).to eq([143, 143, 143, 143])
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
it "sets default values" do
|
31
|
+
f = Shoes::Flow.new(app, parent)
|
32
|
+
expect(f.width).to eq(app.width)
|
33
|
+
expect(f.height).to eq(0)
|
34
|
+
end
|
35
|
+
|
36
|
+
it "clears with an optional block" do
|
37
|
+
expect(flow).to receive(:clear) do |&blk|
|
38
|
+
expect(blk).to eq(input_block)
|
39
|
+
end
|
40
|
+
flow.clear &input_block
|
41
|
+
end
|
42
|
+
|
43
|
+
describe "positioning" do
|
44
|
+
it_behaves_like 'positioning through :_position'
|
45
|
+
it_behaves_like 'positions the first element in the top left'
|
46
|
+
|
47
|
+
shared_examples_for 'positioning in the same line' do
|
48
|
+
it 'positions an element in the same row as long as they fit' do
|
49
|
+
expect(element2.absolute_top).to eq(flow.absolute_top)
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'positions it next to the other element as long as it fits' do
|
53
|
+
expect(element2.absolute_left).to eq(element.absolute_right + 1)
|
54
|
+
end
|
55
|
+
|
56
|
+
it 'has a slot height of the maximum value of the 2 elements' do
|
57
|
+
expect(flow.height).to eq([element.height, element2.height].max)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
describe 'two elements added' do
|
62
|
+
include_context 'two slot children'
|
63
|
+
include_context 'contents_alignment'
|
64
|
+
|
65
|
+
it_behaves_like 'positioning in the same line'
|
66
|
+
|
67
|
+
describe 'exact fit' do
|
68
|
+
let(:input_opts) {{width: element.width + element2.width}}
|
69
|
+
it_behaves_like 'positioning in the same line'
|
70
|
+
end
|
71
|
+
|
72
|
+
end
|
73
|
+
|
74
|
+
describe 'when the elements dont fit next to each other' do
|
75
|
+
let(:input_opts){ {width: element.width + element2.width - 10} }
|
76
|
+
it_behaves_like 'arranges elements underneath each other'
|
77
|
+
|
78
|
+
describe 'and a third element that goes into the second line' do
|
79
|
+
include_context 'three slot children'
|
80
|
+
include_context 'contents_alignment'
|
81
|
+
|
82
|
+
it 'positions the third element right next to the second' do
|
83
|
+
expect(element3.absolute_left).to eq element2.absolute_right + 1
|
84
|
+
end
|
85
|
+
|
86
|
+
it 'positions the third element on the same height as element 2' do
|
87
|
+
expect(element3.absolute_top).to eq element2.absolute_top
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
describe 'elements dont fit next to each other and set small height' do
|
93
|
+
let(:input_opts) { {width: element.width + 10, height: element.height + 10} }
|
94
|
+
it_behaves_like 'set height and contents alignment'
|
95
|
+
end
|
96
|
+
|
97
|
+
describe 'elements dont fit next to each other and set big height' do
|
98
|
+
let(:input_opts){ {width: element.width + 10, height: 1000} }
|
99
|
+
it_behaves_like 'set height and contents alignment'
|
100
|
+
end
|
101
|
+
|
102
|
+
describe 'with margins and two elements not fitting next to each other' do
|
103
|
+
let(:input_opts){{width: element.width + 10, margin: 27}}
|
104
|
+
it_behaves_like 'taking care of margin'
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
describe 'scrolling' do
|
109
|
+
include_context "scroll"
|
110
|
+
subject(:flow) { Shoes::Flow.new(app, parent, opts) }
|
111
|
+
|
112
|
+
context 'when scrollable' do
|
113
|
+
let(:scroll) { true }
|
114
|
+
|
115
|
+
it_behaves_like "scrollable slot"
|
116
|
+
|
117
|
+
context 'when content overflows' do
|
118
|
+
include_context "overflowing content"
|
119
|
+
it_behaves_like "scrollable slot with overflowing content"
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
context 'when slot is not scrollable' do
|
124
|
+
let(:scroll) { false }
|
125
|
+
|
126
|
+
its(:scroll) { should be_falsey }
|
127
|
+
|
128
|
+
it "initializes scroll_top to 0" do
|
129
|
+
expect(flow.scroll_top).to eq(0)
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'shoes/spec_helper'
|
2
|
+
|
3
|
+
main_object = self
|
4
|
+
|
5
|
+
describe Shoes::Font do
|
6
|
+
describe 'font method on the main object' do
|
7
|
+
it 'returns the name of the font loaded' do
|
8
|
+
result = main_object.font(Shoes::FONT_DIR + "Coolvetica" + '.ttf')
|
9
|
+
expect(result).to eq 'Coolvetica'
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'calls the backend add_font method' do
|
13
|
+
expect(Shoes.backend::Font).to receive :add_font
|
14
|
+
main_object.font 'some/path'
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
describe '.font_paths_from_dir' do
|
19
|
+
it 'returns an array of the paths of the fonts in the directory' do
|
20
|
+
result = Shoes::Font.font_paths_from_dir(Shoes::FONT_DIR)
|
21
|
+
|
22
|
+
expect(result).to include(Shoes::FONT_DIR + 'Coolvetica.ttf',
|
23
|
+
Shoes::FONT_DIR + 'Lacuna.ttf')
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'handles sub directories' do
|
27
|
+
tmp_font_dir = Shoes::FONT_DIR + 'tmp/'
|
28
|
+
Dir.mkdir(tmp_font_dir)
|
29
|
+
tmp_font_path = tmp_font_dir + 'weird_font.ttf'
|
30
|
+
FileUtils.touch tmp_font_path
|
31
|
+
result = Shoes::Font.font_paths_from_dir(Shoes::FONT_DIR)
|
32
|
+
expect(result).to include tmp_font_path
|
33
|
+
FileUtils.rm_r tmp_font_dir
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require "shoes/spec_helper"
|
2
|
+
|
3
|
+
module Learning
|
4
|
+
class App
|
5
|
+
attr_accessor :gui
|
6
|
+
|
7
|
+
def initialize
|
8
|
+
@gui = gui_init
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
module TextPlugin
|
14
|
+
module App
|
15
|
+
def gui_init
|
16
|
+
"Peter"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
class Learning::App
|
22
|
+
include TextPlugin::App
|
23
|
+
end
|
24
|
+
|
25
|
+
describe "A Shoes Framework" do
|
26
|
+
|
27
|
+
it "should include Framework Plugins" do
|
28
|
+
expect(Learning::App.new.gui).to eq("Peter")
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'shoes/spec_helper'
|
2
|
+
|
3
|
+
describe Shoes::Gradient do
|
4
|
+
let(:color1) { Shoes::COLORS[:honeydew] }
|
5
|
+
let(:color2) { Shoes::COLORS[:salmon] }
|
6
|
+
subject { Shoes::Gradient.new(color1, color2) }
|
7
|
+
|
8
|
+
describe "comparable" do
|
9
|
+
let(:new_color) { Shoes::COLORS[:limegreen] }
|
10
|
+
|
11
|
+
it "is equal when values are equal" do
|
12
|
+
gradient_2 = Shoes::Gradient.new(color1, color2)
|
13
|
+
expect(subject).to eq(gradient_2)
|
14
|
+
end
|
15
|
+
|
16
|
+
it "is not equal when color 1 is different" do
|
17
|
+
gradient_2 = Shoes::Gradient.new(new_color, color2)
|
18
|
+
expect(subject).not_to eq(gradient_2)
|
19
|
+
end
|
20
|
+
|
21
|
+
it "is not equal when color 2 is different" do
|
22
|
+
gradient_2 = Shoes::Gradient.new(new_color, color2)
|
23
|
+
expect(subject).not_to eq(gradient_2)
|
24
|
+
end
|
25
|
+
|
26
|
+
it "is not equal to just a color" do
|
27
|
+
gradient_2 = Shoes::Gradient.new(color1, new_color)
|
28
|
+
expect(subject).not_to eq(gradient_2)
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
class Shoes
|
2
|
+
class FakeElement < Dimensions
|
3
|
+
include Common::Inspect
|
4
|
+
include Common::Visibility
|
5
|
+
include Common::Positioning
|
6
|
+
include Common::Remove
|
7
|
+
|
8
|
+
def add_child(element)
|
9
|
+
true
|
10
|
+
end
|
11
|
+
|
12
|
+
def adjust_current_position(*_)
|
13
|
+
end
|
14
|
+
|
15
|
+
attr_accessor :parent, :gui
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# Emulates samples/sample17.rb
|
2
|
+
#
|
3
|
+
# Shoes.app width: 240, height: 95 do
|
4
|
+
# para 'Testing, test, test. ',
|
5
|
+
# strong('Breadsticks. '),
|
6
|
+
# em('Breadsticks. '),
|
7
|
+
# code('Breadsticks. '),
|
8
|
+
# bg(fg(strong(ins('EVEN BETTER.')), white), rgb(255, 0, 192)),
|
9
|
+
# sub('fine!')
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
class Sample17Helper
|
13
|
+
|
14
|
+
def initialize(app)
|
15
|
+
# This gives us the Shoes::App
|
16
|
+
@app = app.app
|
17
|
+
end
|
18
|
+
|
19
|
+
def create_para
|
20
|
+
@app.para("Testing, test, test. ", strong_breadsticks, em, code, bg, sub)
|
21
|
+
end
|
22
|
+
|
23
|
+
def breadsticks
|
24
|
+
"Breadsticks. "
|
25
|
+
end
|
26
|
+
|
27
|
+
def even_better
|
28
|
+
"EVEN BETTER."
|
29
|
+
end
|
30
|
+
|
31
|
+
def fine
|
32
|
+
"fine!"
|
33
|
+
end
|
34
|
+
|
35
|
+
def strong_breadsticks
|
36
|
+
@strong_breadsticks ||= @app.strong breadsticks
|
37
|
+
end
|
38
|
+
|
39
|
+
def em
|
40
|
+
@em ||= @app.em breadsticks
|
41
|
+
end
|
42
|
+
|
43
|
+
def code
|
44
|
+
@code ||= @app.code breadsticks
|
45
|
+
end
|
46
|
+
|
47
|
+
def ins
|
48
|
+
@ins ||= @app.ins even_better
|
49
|
+
end
|
50
|
+
|
51
|
+
def fg
|
52
|
+
@fg ||= @app.fg strong, Shoes::COLORS[:white]
|
53
|
+
end
|
54
|
+
|
55
|
+
def strong
|
56
|
+
@strong ||= @app.strong ins
|
57
|
+
end
|
58
|
+
|
59
|
+
def bg
|
60
|
+
@bg ||= @app.bg fg, Shoes::Color.new(255, 0, 192)
|
61
|
+
end
|
62
|
+
|
63
|
+
def sub
|
64
|
+
@sub ||= @app.sub fine
|
65
|
+
end
|
66
|
+
end
|