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,26 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe "Shoes::Common::Inspect" do
|
4
|
+
let(:test_class) {
|
5
|
+
Class.new {
|
6
|
+
include Shoes::Common::Inspect
|
7
|
+
def self.name
|
8
|
+
"Shoes::InspectableObject"
|
9
|
+
end
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
describe "when included" do
|
14
|
+
include InspectHelpers
|
15
|
+
|
16
|
+
subject(:object) { test_class.new }
|
17
|
+
|
18
|
+
it "gives a #to_s like (Shoes::Klass)" do
|
19
|
+
expect(object.to_s).to eq("(Shoes::InspectableObject)")
|
20
|
+
end
|
21
|
+
|
22
|
+
it "gives an #inspect like (Shoes::Klass:0x000049e8)" do
|
23
|
+
expect(object.inspect).to match(/^[(]Shoes::InspectableObject:#{shoes_object_id_pattern}[)]$/)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Shoes::Common::Remove do
|
4
|
+
|
5
|
+
let(:parent) {double 'parent', add_child: true, remove_child: true}
|
6
|
+
let(:gui) {double 'gui', remove: true}
|
7
|
+
let(:test_class) {Class.new {include Shoes::Common::Remove}}
|
8
|
+
|
9
|
+
subject {test_class.new}
|
10
|
+
|
11
|
+
before :each do
|
12
|
+
allow(subject).to receive_messages parent: parent, gui: gui
|
13
|
+
end
|
14
|
+
|
15
|
+
describe '#remove' do
|
16
|
+
before :each do
|
17
|
+
subject.remove
|
18
|
+
end
|
19
|
+
|
20
|
+
it 'calls removes itself from the parent' do
|
21
|
+
expect(parent).to have_received(:remove_child).with(subject)
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'calls remove on the gui' do
|
25
|
+
expect(gui).to have_received(:remove)
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'if the gui does not respond to clear' do
|
29
|
+
# need to stub clear and respond_to because we get a non stubbed method
|
30
|
+
# otherwise on our spies when verifying...
|
31
|
+
let(:gui) {double 'no clear gui', clear: true, respond_to?: false}
|
32
|
+
|
33
|
+
it 'does not call clear on the gui' do
|
34
|
+
expect(gui).not_to have_received(:clear)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Shoes::Common::StyleNormalizer do
|
4
|
+
subject {Shoes::Common::StyleNormalizer.new}
|
5
|
+
|
6
|
+
it 'does not modify a simple hash' do
|
7
|
+
input = {left: 100, width: 233}
|
8
|
+
expect(subject.normalize input).to eq input
|
9
|
+
end
|
10
|
+
|
11
|
+
it 'turns hexcodes for fill into colors' do
|
12
|
+
input = {fill: 'ffffff'}
|
13
|
+
expected = {fill: Shoes::Color.new(255, 255, 255)}
|
14
|
+
expect(subject.normalize input).to eq expected
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'turns hexcodes for stroke into colors' do
|
18
|
+
input = {stroke: 'ffffff'}
|
19
|
+
expected = {stroke: Shoes::Color.new(255, 255, 255)}
|
20
|
+
expect(subject.normalize input).to eq expected
|
21
|
+
end
|
22
|
+
|
23
|
+
it 'does not modify the original hash' do
|
24
|
+
input = {stroke: '333333'}
|
25
|
+
subject.normalize input
|
26
|
+
expect(input).to eq({stroke: '333333'})
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,147 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Shoes::Common::Style do
|
4
|
+
include_context "dsl app"
|
5
|
+
let(:blue) { Shoes::COLORS[:blue] }
|
6
|
+
|
7
|
+
class StyleTester
|
8
|
+
include Shoes::Common::Style
|
9
|
+
attr_accessor :left
|
10
|
+
style_with :key, :left, :click, :strokewidth, :fill
|
11
|
+
STYLES = {fill: Shoes::COLORS[:blue]}
|
12
|
+
|
13
|
+
def initialize(app, styles = {})
|
14
|
+
@app = app #needed for style init
|
15
|
+
style_init(styles, key: 'value')
|
16
|
+
@left = 15
|
17
|
+
end
|
18
|
+
|
19
|
+
def click(&arg)
|
20
|
+
@click = arg
|
21
|
+
end
|
22
|
+
|
23
|
+
def click_blk
|
24
|
+
@click
|
25
|
+
end
|
26
|
+
end
|
27
|
+
subject {StyleTester.new(app)}
|
28
|
+
|
29
|
+
its(:style) { should eq (initial_style) }
|
30
|
+
let(:initial_style) { {key: 'value', left: 15, click: nil, strokewidth: 1, fill: blue} }
|
31
|
+
|
32
|
+
describe 'reading and writing through #style(hash)' do
|
33
|
+
let(:input_proc) { Proc.new {} }
|
34
|
+
let(:changed_style) { {key: 'changed value'} }
|
35
|
+
|
36
|
+
|
37
|
+
before :each do
|
38
|
+
subject.style changed_style
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'returns the changed style' do
|
42
|
+
expect(subject.style).to eq initial_style.merge changed_style
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'does update values for new values' do
|
46
|
+
subject.style new_key: 'new value'
|
47
|
+
expect(subject.style[:new_key]).to eq 'new value'
|
48
|
+
end
|
49
|
+
|
50
|
+
it 'reads new dimensions' do
|
51
|
+
subject.left = 20
|
52
|
+
expect(subject.style[:left]).to eq 20
|
53
|
+
end
|
54
|
+
|
55
|
+
it 'writes new dimensions' do
|
56
|
+
subject.style(left: 200)
|
57
|
+
expect(subject.left).to eq 200
|
58
|
+
end
|
59
|
+
|
60
|
+
it 'sets click' do
|
61
|
+
subject.style(click: input_proc)
|
62
|
+
expect(subject.click_blk).to eq input_proc
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'sets non dimension non click style via setter' do
|
66
|
+
subject.key = 'silver'
|
67
|
+
expect(subject.style[:key]).to eq 'silver'
|
68
|
+
end
|
69
|
+
|
70
|
+
it 'gets non dimension non click style via getter' do
|
71
|
+
expect(subject.key).to eq 'changed value'
|
72
|
+
end
|
73
|
+
|
74
|
+
# these specs are rather extensive as they are performance critical for
|
75
|
+
# redrawing
|
76
|
+
describe 'calling or not calling #update_style' do
|
77
|
+
it 'does not call #update_style if no key value pairs changed' do
|
78
|
+
expect(subject).not_to receive(:update_style)
|
79
|
+
subject.style changed_style
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'does not call #update_style if called without arg' do
|
83
|
+
expect(subject).not_to receive(:update_style)
|
84
|
+
subject.style
|
85
|
+
end
|
86
|
+
|
87
|
+
it 'does call #update_style if the values change' do
|
88
|
+
expect(subject).to receive(:update_style)
|
89
|
+
subject.style key: 'new value'
|
90
|
+
end
|
91
|
+
|
92
|
+
it 'does call #update_style if there is a new key-value' do
|
93
|
+
expect(subject).to receive(:update_style)
|
94
|
+
subject.style new_key: 'value'
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
describe "app-default" do
|
100
|
+
it "reads app-default styles with reader" do
|
101
|
+
expect(subject.strokewidth).to eq 1
|
102
|
+
end
|
103
|
+
|
104
|
+
it "writes app-default styles with writer" do
|
105
|
+
subject.strokewidth = 5
|
106
|
+
expect(subject.strokewidth).to eq 5
|
107
|
+
end
|
108
|
+
|
109
|
+
it "does not read 'default' styles that it doesn't support" do
|
110
|
+
expect(subject).not_to respond_to :stroke
|
111
|
+
end
|
112
|
+
|
113
|
+
it "does not write 'default' styles that it doesn't support" do
|
114
|
+
expect(subject).not_to respond_to :stroke=
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
describe "style priorities" do
|
119
|
+
subject {StyleTester.new(app, key: 'pumpkin')}
|
120
|
+
|
121
|
+
it 'uses arguments-styles over element-styles' do
|
122
|
+
expect(subject.key).to eq 'pumpkin'
|
123
|
+
end
|
124
|
+
|
125
|
+
it "uses element-defaults over app-defaults" do
|
126
|
+
expect(subject.fill).to eq blue
|
127
|
+
end
|
128
|
+
|
129
|
+
#related priority specs are tested individually in spec/shared_examples/style
|
130
|
+
end
|
131
|
+
|
132
|
+
describe 'StyleWith' do
|
133
|
+
it 'ensures that readers exist for each supported style' do
|
134
|
+
subject.supported_styles.each do |style|
|
135
|
+
expect(subject).to respond_to style
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
it 'ensures that writers exist for each supported style' do
|
140
|
+
subject.supported_styles.each do |style|
|
141
|
+
expect(subject).to respond_to "#{style}="
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
end
|
146
|
+
|
147
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Shoes::Configuration do
|
4
|
+
after { Shoes.configuration.reset }
|
5
|
+
|
6
|
+
describe "#logger" do
|
7
|
+
describe ":ruby" do
|
8
|
+
before { Shoes.configuration.logger = :ruby }
|
9
|
+
|
10
|
+
it "uses the Ruby logger" do
|
11
|
+
expect(Shoes.logger.instance_of?(Shoes::Logger::Ruby)).to eq(true)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "backend" do
|
17
|
+
include_context "dsl app"
|
18
|
+
|
19
|
+
let(:dsl_object) { Shoes::Shape.new app, parent }
|
20
|
+
|
21
|
+
describe "#backend_with_app_for" do
|
22
|
+
it "passes app.gui to backend" do
|
23
|
+
expect(Shoes.configuration.backend::Shape).to receive(:new).with(an_instance_of(Shoes::Shape), app.gui).and_call_original
|
24
|
+
dsl_object
|
25
|
+
end
|
26
|
+
|
27
|
+
it "returns shape backend object" do
|
28
|
+
expect(Shoes.configuration.backend_with_app_for(dsl_object)).to be_instance_of(Shoes.configuration.backend::Shape)
|
29
|
+
end
|
30
|
+
|
31
|
+
it "raises ArgumentError for a non-Shoes object" do
|
32
|
+
expect { Shoes.configuration.backend_with_app_for(1..100) }.to raise_error(ArgumentError)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require "pathname"
|
2
|
+
|
3
|
+
describe "Shoes constants" do
|
4
|
+
specify "PI equals Math::PI" do
|
5
|
+
expect(Shoes::PI).to eq(Math::PI)
|
6
|
+
end
|
7
|
+
|
8
|
+
specify "TWO_PI equals 2 * Math::PI" do
|
9
|
+
expect(Shoes::TWO_PI).to eq(2 * Math::PI)
|
10
|
+
end
|
11
|
+
|
12
|
+
specify "HALF_PI equals 0.5 * Math::PI" do
|
13
|
+
expect(Shoes::HALF_PI).to eq(0.5 * Math::PI)
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "DIR" do
|
17
|
+
let(:shoes_home_dir) { Pathname.new(__FILE__).join("../../..").expand_path }
|
18
|
+
subject { Pathname.new Shoes::DIR }
|
19
|
+
|
20
|
+
it "is the shoes home directory" do
|
21
|
+
expect(subject).to eq(shoes_home_dir)
|
22
|
+
end
|
23
|
+
|
24
|
+
it "contains lib/shoes.rb" do
|
25
|
+
expect(subject.join("lib/shoes.rb")).to exist
|
26
|
+
end
|
27
|
+
|
28
|
+
it "contains static/shoes_icon.png" do
|
29
|
+
expect(subject.join("static/shoes-icon.png")).to exist
|
30
|
+
end
|
31
|
+
|
32
|
+
it "remains constant when current directory changes" do
|
33
|
+
Dir.chdir ".." do
|
34
|
+
expect(subject).to eq(shoes_home_dir)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,171 @@
|
|
1
|
+
require 'shoes/spec_helper'
|
2
|
+
# NOTE: This spec is sadly circumventing the integration specs since we couldn't
|
3
|
+
# figure out how to get rid of the alert - it stopped the running tests
|
4
|
+
|
5
|
+
main_object = self
|
6
|
+
|
7
|
+
describe Shoes::Dialog do
|
8
|
+
|
9
|
+
before :each do
|
10
|
+
@dialog = Shoes::Dialog.new
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'is not nil' do
|
14
|
+
expect(@dialog).not_to be_nil
|
15
|
+
end
|
16
|
+
|
17
|
+
describe '#alert' do
|
18
|
+
it 'returns nil' do
|
19
|
+
expect(@dialog.alert('something')).to be_nil
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
describe '#confirm' do
|
24
|
+
it 'responds to it' do
|
25
|
+
expect(@dialog).to respond_to :confirm
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe '#ask_open_file' do
|
30
|
+
it 'responds to it' do
|
31
|
+
expect(@dialog).to respond_to :dialog_chooser
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
describe '#ask_save_file' do
|
36
|
+
it 'responds to it' do
|
37
|
+
expect(@dialog).to respond_to :dialog_chooser
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe '#ask_open_folder' do
|
42
|
+
it 'responds to it' do
|
43
|
+
expect(@dialog).to respond_to :dialog_chooser
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe '#ask_save_folder' do
|
48
|
+
it 'responds to it' do
|
49
|
+
expect(@dialog).to respond_to :dialog_chooser
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe '#ask' do
|
54
|
+
it 'responds to it' do
|
55
|
+
expect(@dialog).to respond_to :ask
|
56
|
+
end
|
57
|
+
|
58
|
+
it 'runs ask dialog' do
|
59
|
+
# Prevent the backend from actually running by stubbing out this method
|
60
|
+
allow_any_instance_of(Shoes.backend::App).to receive(:wait_until_closed)
|
61
|
+
|
62
|
+
result = @dialog.ask("What?", {})
|
63
|
+
expect(result).to be_nil
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
describe '#ask_color' do
|
68
|
+
it 'responds to it' do
|
69
|
+
expect(@dialog).to respond_to :ask_color
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
describe 'nothing monkey patched on to Object' do
|
74
|
+
it 'is not monkey patched on to object' do
|
75
|
+
expect(Object.new).not_to respond_to :alert
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'is not monkey patched on to object' do
|
79
|
+
expect(Object.new).not_to respond_to :confirm
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'is not monkey patched on to object' do
|
83
|
+
expect(Object.new).not_to respond_to :dialog_chooser
|
84
|
+
end
|
85
|
+
|
86
|
+
it 'is not monkey patched on to object' do
|
87
|
+
expect(Object.new).not_to respond_to :ask
|
88
|
+
end
|
89
|
+
|
90
|
+
it 'is not monkey patched on to object' do
|
91
|
+
expect(Object.new).not_to respond_to :ask_color
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
describe 'the main object' do
|
96
|
+
it 'knows of #alert' do
|
97
|
+
expect(main_object).to respond_to :alert
|
98
|
+
end
|
99
|
+
|
100
|
+
it 'knows of #confirm' do
|
101
|
+
expect(main_object).to respond_to :confirm
|
102
|
+
end
|
103
|
+
|
104
|
+
it 'knows of #confirm?' do
|
105
|
+
expect(main_object).to respond_to :confirm?
|
106
|
+
end
|
107
|
+
|
108
|
+
it 'knows of #ask_open_file' do
|
109
|
+
expect(main_object).to respond_to :ask_open_file
|
110
|
+
end
|
111
|
+
|
112
|
+
it 'knows of #ask_save_file' do
|
113
|
+
expect(main_object).to respond_to :ask_save_file
|
114
|
+
end
|
115
|
+
|
116
|
+
it 'knows of #ask_open_folder' do
|
117
|
+
expect(main_object).to respond_to :ask_open_folder
|
118
|
+
end
|
119
|
+
|
120
|
+
it 'knows of #ask_save_folder' do
|
121
|
+
expect(main_object).to respond_to :ask_save_folder
|
122
|
+
end
|
123
|
+
|
124
|
+
it 'knows of #ask' do
|
125
|
+
expect(main_object).to respond_to :ask
|
126
|
+
end
|
127
|
+
|
128
|
+
it 'knows of #ask' do
|
129
|
+
expect(main_object).to respond_to :ask_color
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
describe 'Shoes::App' do
|
134
|
+
before :each do
|
135
|
+
@app = Shoes::App.new
|
136
|
+
end
|
137
|
+
|
138
|
+
it 'knows about #alert' do
|
139
|
+
expect(@app).to respond_to :alert
|
140
|
+
end
|
141
|
+
|
142
|
+
it 'knows about #confirm' do
|
143
|
+
expect(@app).to respond_to :confirm
|
144
|
+
end
|
145
|
+
|
146
|
+
it 'knows about #ask_open_file' do
|
147
|
+
expect(@app).to respond_to :ask_open_file
|
148
|
+
end
|
149
|
+
|
150
|
+
it 'knows about #ask_save_file' do
|
151
|
+
expect(@app).to respond_to :ask_save_file
|
152
|
+
end
|
153
|
+
|
154
|
+
it 'knows about #ask_open_folder' do
|
155
|
+
expect(@app).to respond_to :ask_open_folder
|
156
|
+
end
|
157
|
+
|
158
|
+
it 'knows about #ask_save_folder' do
|
159
|
+
expect(@app).to respond_to :ask_save_folder
|
160
|
+
end
|
161
|
+
|
162
|
+
it 'knows about #ask_save_folder' do
|
163
|
+
expect(@app).to respond_to :ask
|
164
|
+
end
|
165
|
+
|
166
|
+
it 'knows about #ask_save_color' do
|
167
|
+
expect(@app).to respond_to :ask_color
|
168
|
+
end
|
169
|
+
end
|
170
|
+
|
171
|
+
end
|