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,48 @@
|
|
1
|
+
require 'shoes/spec_helper'
|
2
|
+
|
3
|
+
shared_examples_for "basic star" do
|
4
|
+
it "retains app" do
|
5
|
+
expect(subject.app).to eq(app)
|
6
|
+
end
|
7
|
+
|
8
|
+
it "creates gui object" do
|
9
|
+
expect(subject.gui).not_to be_nil
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
describe Shoes::Star do
|
14
|
+
include_context "dsl app"
|
15
|
+
|
16
|
+
let(:left) { 44 }
|
17
|
+
let(:top) { 66 }
|
18
|
+
let(:width) { 100 }
|
19
|
+
let(:height) { 100 }
|
20
|
+
|
21
|
+
subject { Shoes::Star.new(app, parent, left, top, 5, 50, 30) }
|
22
|
+
|
23
|
+
it_behaves_like "basic star"
|
24
|
+
it_behaves_like "object with style" do
|
25
|
+
let(:subject_without_style) { Shoes::Star.new(app, parent, left, top, 5, 50, 30) }
|
26
|
+
let(:subject_with_style) { Shoes::Star.new(app, parent, left, top, 5, 50, 30, arg_styles) }
|
27
|
+
end
|
28
|
+
|
29
|
+
it_behaves_like "object with dimensions"
|
30
|
+
it_behaves_like "movable object"
|
31
|
+
it_behaves_like 'object with parent'
|
32
|
+
|
33
|
+
describe "in_bounds?" do
|
34
|
+
before do
|
35
|
+
# Gotta pretend like we've been positioned
|
36
|
+
subject.x_dimension.absolute_start = subject.left
|
37
|
+
subject.y_dimension.absolute_start = subject.top
|
38
|
+
end
|
39
|
+
|
40
|
+
it "in bounds" do
|
41
|
+
expect(subject.in_bounds?(50, 50)).to eq(true)
|
42
|
+
end
|
43
|
+
|
44
|
+
it "out of bounds" do
|
45
|
+
expect(subject.in_bounds?(200, 200)).to eq(false)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,75 @@
|
|
1
|
+
require 'shoes/spec_helper'
|
2
|
+
|
3
|
+
describe Shoes::TextBlockDimensions do
|
4
|
+
let(:left) { 0 }
|
5
|
+
let(:top) { 10 }
|
6
|
+
let(:width) { 5 }
|
7
|
+
let(:height) { 10 }
|
8
|
+
|
9
|
+
let(:old_dimension) { Shoes::Dimensions.new(nil, left, top, width, height) }
|
10
|
+
subject { Shoes::TextBlockDimensions.new(nil, left, top, width, height) }
|
11
|
+
|
12
|
+
before(:each) do
|
13
|
+
old_dimension.absolute_left = subject.absolute_left = 0
|
14
|
+
old_dimension.absolute_top = subject.absolute_top = 0
|
15
|
+
end
|
16
|
+
|
17
|
+
describe "positions" do
|
18
|
+
it "inherits from base" do
|
19
|
+
expect(subject.absolute_right).to eq(old_dimension.absolute_right)
|
20
|
+
expect(subject.absolute_bottom).to eq(old_dimension.absolute_bottom)
|
21
|
+
end
|
22
|
+
|
23
|
+
it "overrides absolute right" do
|
24
|
+
subject.absolute_right = 200
|
25
|
+
expect(subject.absolute_right).to eq(200)
|
26
|
+
end
|
27
|
+
|
28
|
+
it "overrides absolute bottom" do
|
29
|
+
subject.absolute_bottom = 200
|
30
|
+
expect(subject.absolute_bottom).to eq(200)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe "calculated sizes" do
|
35
|
+
it "inherits from base" do
|
36
|
+
expect(subject.width).to eq(5)
|
37
|
+
expect(subject.height).to eq(10)
|
38
|
+
end
|
39
|
+
|
40
|
+
it "override with calculated width" do
|
41
|
+
subject.width = nil
|
42
|
+
subject.calculated_width = 200
|
43
|
+
expect(subject.width).to eq(200)
|
44
|
+
end
|
45
|
+
|
46
|
+
it "override with calculated height" do
|
47
|
+
subject.height = nil
|
48
|
+
subject.calculated_height = 200
|
49
|
+
expect(subject.height).to eq(200)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe "containing width" do
|
54
|
+
it "uses immediate width if it can" do
|
55
|
+
expect(subject.containing_width).to eq(5)
|
56
|
+
end
|
57
|
+
|
58
|
+
it "applies margins" do
|
59
|
+
subject.margin = 1
|
60
|
+
expect(subject.containing_width).to eq(3)
|
61
|
+
end
|
62
|
+
|
63
|
+
describe "with parent" do
|
64
|
+
let(:parent) { double('parent', element_width: 100,
|
65
|
+
x_dimension: double("x"),
|
66
|
+
y_dimension: double("y")) }
|
67
|
+
subject { Shoes::TextBlockDimensions.new(parent, left, top, nil, height) }
|
68
|
+
|
69
|
+
it "delegates to parent if no width of its own" do
|
70
|
+
expect(subject.containing_width).to eq(100)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
end
|
75
|
+
end
|
@@ -0,0 +1,270 @@
|
|
1
|
+
require 'shoes/spec_helper'
|
2
|
+
require 'shoes/helpers/sample17_helper'
|
3
|
+
|
4
|
+
describe Shoes::TextBlock do
|
5
|
+
include_context "dsl app"
|
6
|
+
|
7
|
+
let(:text_link) { Shoes::Link.new(app, ['Hello']) }
|
8
|
+
let(:text) { [text_link, ", world!"] }
|
9
|
+
subject(:text_block) { Shoes::TextBlock.new(app, parent, text, {app: app}) }
|
10
|
+
|
11
|
+
it_behaves_like "object with style" do
|
12
|
+
let(:subject_without_style) { Shoes::TextBlock.new(app, parent, text) }
|
13
|
+
let(:subject_with_style) { Shoes::TextBlock.new(app, parent, text, arg_styles) }
|
14
|
+
end
|
15
|
+
|
16
|
+
describe "initialize" do
|
17
|
+
it "creates gui object" do
|
18
|
+
expect(text_block.gui).not_to be_nil
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
describe "text" do
|
23
|
+
context "with an array of [Shoes::Link, String]" do
|
24
|
+
it "sets text" do
|
25
|
+
expect(text_block.text).to eq "Hello, world!"
|
26
|
+
end
|
27
|
+
|
28
|
+
it "changes the text" do
|
29
|
+
text_block.text = "Goodbye Cruel World"
|
30
|
+
expect(text_block.text).to eq "Goodbye Cruel World"
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
context "with a single string" do
|
35
|
+
let(:text) { "Hello, world!" }
|
36
|
+
|
37
|
+
it "sets text" do
|
38
|
+
expect(text_block.text).to eq "Hello, world!"
|
39
|
+
end
|
40
|
+
|
41
|
+
it "changes the text" do
|
42
|
+
text_block.text = "Goodbye Cruel World"
|
43
|
+
expect(text_block.text).to eq "Goodbye Cruel World"
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe "#to_s" do
|
49
|
+
it "is the same as #text" do
|
50
|
+
text = text_block.text
|
51
|
+
expect(text_block.to_s).to eq(text)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe "#replace" do
|
56
|
+
it "replaces text" do
|
57
|
+
text_block.replace "Goodbye Cruel World"
|
58
|
+
expect(text_block.text).to eq("Goodbye Cruel World")
|
59
|
+
end
|
60
|
+
|
61
|
+
it "allows two arguments" do
|
62
|
+
text_block.replace "Goodbye Cruel World, ", text_link
|
63
|
+
expect(text_block.text).to eq("Goodbye Cruel World, Hello")
|
64
|
+
end
|
65
|
+
|
66
|
+
it "updates contents" do
|
67
|
+
text_block.replace("Later Gator")
|
68
|
+
expect(text_block.contents).to eq(["Later Gator"])
|
69
|
+
end
|
70
|
+
|
71
|
+
it "updates text styles" do
|
72
|
+
text_block.replace "Later Gator"
|
73
|
+
expect(text_block.text_styles).to be_empty
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
describe "#contents" do
|
78
|
+
it "returns text elements" do
|
79
|
+
expect(text_block.contents).to eql([text_link, ", world!"])
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe "font" do
|
84
|
+
let(:text_block) { Shoes::TextBlock.new(app, parent, ["Hello, world!"], style) }
|
85
|
+
|
86
|
+
context "with defaults" do
|
87
|
+
let(:style) { Hash.new }
|
88
|
+
|
89
|
+
it "sets the default font to Arial" do
|
90
|
+
expect(text_block.font).to eq "Arial"
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
context "with a font family string" do
|
95
|
+
let(:style) { { font: "Helvetica" } }
|
96
|
+
|
97
|
+
it "sets the font family" do
|
98
|
+
expect(text_block.font).to eq "Helvetica"
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
context "with a font family string and size with 'px'" do
|
103
|
+
let(:style) { { font: "Helvetica 33px" } }
|
104
|
+
|
105
|
+
it "sets the font family" do
|
106
|
+
expect(text_block.font).to eq "Helvetica"
|
107
|
+
end
|
108
|
+
|
109
|
+
it "sets the font size" do
|
110
|
+
expect(text_block.size).to eq 33
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
context "with a font family string and size with ' px'" do
|
115
|
+
let(:style) { { font: "Helvetica 33 px" } }
|
116
|
+
|
117
|
+
it "sets the font family" do
|
118
|
+
expect(text_block.font).to eq "Helvetica"
|
119
|
+
end
|
120
|
+
|
121
|
+
it "sets the font size" do
|
122
|
+
expect(text_block.size).to eq 33
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
context "with a quoted font family string and size with 'px'" do
|
127
|
+
let(:style) { { font: '"Comic Sans" 13px' } }
|
128
|
+
|
129
|
+
it "sets the font family" do
|
130
|
+
expect(text_block.font).to eq "Comic Sans"
|
131
|
+
end
|
132
|
+
|
133
|
+
it "sets the size" do
|
134
|
+
expect(text_block.size).to eq 13
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
describe "stroke" do
|
140
|
+
it "should accept a hex code" do
|
141
|
+
s = Shoes::TextBlock.new(app, parent, ["Hello, world!"], { stroke: "#fda", app: app })
|
142
|
+
color = s.style[:stroke]
|
143
|
+
expect(color.red).to eql 255
|
144
|
+
expect(color.green).to eql 221
|
145
|
+
expect(color.blue).to eql 170
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
describe "width" do
|
150
|
+
before(:each) do
|
151
|
+
allow(parent).to receive(:element_width) { 300 }
|
152
|
+
allow(parent).to receive(:absolute_left) { 0 }
|
153
|
+
end
|
154
|
+
|
155
|
+
context "when not explicitly set" do
|
156
|
+
subject(:text_block) { Shoes::TextBlock.new(app, parent, ["text"]) }
|
157
|
+
|
158
|
+
it "delegates to calculated width" do
|
159
|
+
subject.calculated_width = 240
|
160
|
+
expect(subject.width).to eql 240
|
161
|
+
end
|
162
|
+
|
163
|
+
it "delegates to calculated height" do
|
164
|
+
subject.calculated_height = 240
|
165
|
+
expect(subject.height).to eql 240
|
166
|
+
end
|
167
|
+
|
168
|
+
it "bases desired width off parent" do
|
169
|
+
subject.absolute_left = 20
|
170
|
+
expect(subject.desired_width).to eql 280
|
171
|
+
end
|
172
|
+
|
173
|
+
it "can base desired off explicit containing width" do
|
174
|
+
subject.absolute_left = 20
|
175
|
+
expect(subject.desired_width(1000)).to eql(980)
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
context "when explicitly set" do
|
180
|
+
subject(:text_block) { Shoes::TextBlock.new(app, parent, ["text"], { width: 120 }) }
|
181
|
+
|
182
|
+
it "gets returned" do
|
183
|
+
expect(subject.width).to eql 120
|
184
|
+
end
|
185
|
+
|
186
|
+
it "is used for desired width" do
|
187
|
+
subject.absolute_left = 20
|
188
|
+
expect(subject.desired_width).to eql 100
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
192
|
+
end
|
193
|
+
|
194
|
+
context "cursor management" do
|
195
|
+
let(:textcursor) { double("textcursor") }
|
196
|
+
|
197
|
+
before(:each) do
|
198
|
+
allow(app).to receive(:textcursor) { textcursor }
|
199
|
+
end
|
200
|
+
|
201
|
+
it "creates a textcursor" do
|
202
|
+
expect(subject.textcursor).to eq(textcursor)
|
203
|
+
expect(app).to have_received(:textcursor)
|
204
|
+
end
|
205
|
+
|
206
|
+
it "only creates textcursor" do
|
207
|
+
original = subject.textcursor
|
208
|
+
allow(app).to receive(:textcursor) { double("new cursor") }
|
209
|
+
|
210
|
+
expect(subject.textcursor).to eq(original)
|
211
|
+
expect(app).to have_received(:textcursor).once
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
context "with empty subelements" do
|
216
|
+
let!(:link) { actual_app.link('') }
|
217
|
+
let!(:span) { actual_app.span('') }
|
218
|
+
let!(:para) { actual_app.para(link, span) }
|
219
|
+
let(:actual_app) { app.app }
|
220
|
+
|
221
|
+
it "properly ignores empty element lengths in text_styles" do
|
222
|
+
text_styles = { 0...0 => [link, span] }
|
223
|
+
|
224
|
+
expect(para.text_styles).to eq(text_styles)
|
225
|
+
end
|
226
|
+
end
|
227
|
+
|
228
|
+
# Emulates samples/sample17.rb
|
229
|
+
#
|
230
|
+
# Shoes.app width: 240, height: 95 do
|
231
|
+
# para 'Testing, test, test. ',
|
232
|
+
# strong('Breadsticks. '),
|
233
|
+
# em('Breadsticks. '),
|
234
|
+
# code('Breadsticks. '),
|
235
|
+
# bg(fg(strong(ins('EVEN BETTER.')), white), rgb(255, 0, 192)),
|
236
|
+
# sub('fine!')
|
237
|
+
# end
|
238
|
+
#
|
239
|
+
context "with nested text fragments" do
|
240
|
+
let(:helper) {Sample17Helper.new(app)}
|
241
|
+
let!(:para) { helper.create_para }
|
242
|
+
|
243
|
+
it "has full text of fragments" do
|
244
|
+
expect(para.text).to eq("Testing, test, test. Breadsticks. Breadsticks. Breadsticks. EVEN BETTER.fine!")
|
245
|
+
end
|
246
|
+
|
247
|
+
it "has fragment styles" do
|
248
|
+
text_styles = {
|
249
|
+
21..33 => [helper.strong_breadsticks],
|
250
|
+
34..46 => [helper.em],
|
251
|
+
47..59 => [helper.code],
|
252
|
+
60..71 => [helper.bg, helper.fg, helper.strong, helper.ins],
|
253
|
+
72..76 => [helper.sub]
|
254
|
+
}
|
255
|
+
expect(para.text_styles).to eq(text_styles)
|
256
|
+
end
|
257
|
+
|
258
|
+
it 'sets the parent_text of the non nested texts to the para' do
|
259
|
+
expect(helper.strong_breadsticks.parent).to eq para
|
260
|
+
end
|
261
|
+
|
262
|
+
it 'sets the parent_text of nested fragments correctly' do
|
263
|
+
expect(helper.ins.parent).to eq helper.strong
|
264
|
+
end
|
265
|
+
|
266
|
+
it 'lets the nested text fragements know what their text block is' do
|
267
|
+
expect(helper.ins.text_block).to eq para
|
268
|
+
end
|
269
|
+
end
|
270
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
require 'shoes/spec_helper'
|
2
|
+
|
3
|
+
describe 'Shoes.url' do
|
4
|
+
let(:klazz) do
|
5
|
+
Class.new(Shoes) do
|
6
|
+
include RSpec::Matchers
|
7
|
+
|
8
|
+
url '/', :index
|
9
|
+
url '/path', :path
|
10
|
+
url '/number/(\d+)', :number
|
11
|
+
url '/foo', :foo
|
12
|
+
url '/visit_me', :visit_me
|
13
|
+
|
14
|
+
def index
|
15
|
+
end
|
16
|
+
|
17
|
+
def path
|
18
|
+
end
|
19
|
+
|
20
|
+
def number(i)
|
21
|
+
end
|
22
|
+
|
23
|
+
def foo
|
24
|
+
some_method
|
25
|
+
end
|
26
|
+
|
27
|
+
def visit_me
|
28
|
+
expect(location).to eq '/visit_me'
|
29
|
+
end
|
30
|
+
|
31
|
+
def some_method
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
subject do
|
37
|
+
Shoes.app
|
38
|
+
end
|
39
|
+
|
40
|
+
it "should call index upon startup" do
|
41
|
+
expect_any_instance_of(klazz).to receive(:index)
|
42
|
+
subject
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'should receive path when visitting path' do
|
46
|
+
expect_any_instance_of(klazz).to receive(:path)
|
47
|
+
Shoes.app do visit '/path' end
|
48
|
+
end
|
49
|
+
|
50
|
+
it 'handles the arguments given in the regexes' do
|
51
|
+
expect_any_instance_of(klazz).to receive(:number).with('7')
|
52
|
+
Shoes.app do visit '/number/7' end
|
53
|
+
end
|
54
|
+
|
55
|
+
it 'can call methods defined in the URL class when visitting a URL' do
|
56
|
+
expect_any_instance_of(klazz).to receive(:some_method)
|
57
|
+
Shoes.app do visit '/foo' end
|
58
|
+
end
|
59
|
+
|
60
|
+
it 'has a location method that returns the current URL' do
|
61
|
+
Shoes.app do visit('/visit_me') end
|
62
|
+
end
|
63
|
+
|
64
|
+
it 'instances report class as klazz (regression, do not ask...)' do
|
65
|
+
expect(klazz.new.class).to eq klazz
|
66
|
+
end
|
67
|
+
|
68
|
+
end
|