code-ruby 1.1.3 → 1.2.1

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.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +13 -13
  3. data/.github/workflows/ci.yml +25 -24
  4. data/.npm-version +1 -0
  5. data/.rubocop.yml +14 -11
  6. data/Gemfile +5 -4
  7. data/Gemfile.lock +134 -28
  8. data/VERSION +1 -1
  9. data/bin/console +6 -0
  10. data/bin/dorian +31 -0
  11. data/code-ruby.gemspec +6 -1
  12. data/lib/code/error.rb +4 -25
  13. data/lib/code/node/code.rb +1 -1
  14. data/lib/code/node/function_parameter.rb +10 -8
  15. data/lib/code/node/while.rb +1 -1
  16. data/lib/code/object/boolean.rb +20 -16
  17. data/lib/code/object/class.rb +10 -4
  18. data/lib/code/object/code.rb +7 -3
  19. data/lib/code/object/context.rb +8 -8
  20. data/lib/code/object/date.rb +41 -7
  21. data/lib/code/object/decimal.rb +101 -56
  22. data/lib/code/object/dictionary.rb +245 -191
  23. data/lib/code/object/duration.rb +11 -7
  24. data/lib/code/object/function.rb +38 -25
  25. data/lib/code/object/global.rb +95 -42
  26. data/lib/code/object/html.rb +12 -14
  27. data/lib/code/object/http.rb +219 -0
  28. data/lib/code/object/identifier_list.rb +16 -16
  29. data/lib/code/object/integer.rb +129 -89
  30. data/lib/code/object/json.rb +18 -22
  31. data/lib/code/object/list.rb +141 -92
  32. data/lib/code/object/parameter.rb +9 -13
  33. data/lib/code/object/range.rb +77 -45
  34. data/lib/code/object/string.rb +15 -34
  35. data/lib/code/object/time.rb +17 -16
  36. data/lib/code/object.rb +126 -93
  37. data/lib/code/parser/string.rb +2 -1
  38. data/lib/code/type/sig.rb +3 -3
  39. data/lib/code-ruby.rb +119 -0
  40. data/package-lock.json +1 -1
  41. data/package.json +1 -1
  42. data/spec/code/object/http_spec.rb +91 -0
  43. data/spec/code/type_spec.rb +1 -1
  44. data/spec/code_spec.rb +10 -5
  45. data/spec/spec_helper.rb +18 -0
  46. metadata +50 -3
@@ -0,0 +1,91 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "spec_helper"
4
+
5
+ RSpec.describe Code::Object::Http do
6
+ %w[get head post put delete connect options trace patch].each do |verb|
7
+ describe ".#{verb}" do
8
+ {
9
+ continue: 100,
10
+ switching_protocols: 101,
11
+ processing: 102,
12
+ early_hints: 103,
13
+ ok: 200,
14
+ created: 201,
15
+ accepted: 202,
16
+ non_authoritative_information: 203,
17
+ no_content: 204,
18
+ reset_content: 205,
19
+ partial_content: 206,
20
+ multi_status: 207,
21
+ already_reported: 208,
22
+ im_used: 226,
23
+ multiple_choices: 300,
24
+ moved_permanently: 301,
25
+ found: 302,
26
+ see_other: 303,
27
+ not_modified: 304,
28
+ use_proxy: 305,
29
+ reserved: 306,
30
+ temporary_redirect: 307,
31
+ permanent_redirect: 308,
32
+ bad_request: 400,
33
+ unauthorized: 401,
34
+ payment_required: 402,
35
+ forbidden: 403,
36
+ not_found: 404,
37
+ method_not_allowed: 405,
38
+ not_acceptable: 406,
39
+ proxy_authentication_required: 407,
40
+ request_timeout: 408,
41
+ conflict: 409,
42
+ gone: 410,
43
+ length_required: 411,
44
+ precondition_failed: 412,
45
+ request_entity_too_large: 413,
46
+ request_uri_too_long: 414,
47
+ unsupported_media_type: 415,
48
+ requested_range_not_satisfiable: 416,
49
+ expectation_failed: 417,
50
+ misdirected_request: 421,
51
+ unprocessable_entity: 422,
52
+ locked: 423,
53
+ failed_dependency: 424,
54
+ too_early: 425,
55
+ upgrade_required: 426,
56
+ precondition_required: 428,
57
+ too_many_requests: 429,
58
+ request_header_fields_too_large: 431,
59
+ unavailable_for_legal_reasons: 451,
60
+ internal_server_error: 500,
61
+ not_implemented: 501,
62
+ bad_gateway: 502,
63
+ service_unavailable: 503,
64
+ gateway_timeout: 504,
65
+ http_version_not_supported: 505,
66
+ variant_also_negotiates: 506,
67
+ insufficient_storage: 507,
68
+ loop_detected: 508,
69
+ bandwidth_limit_exceeded: 509,
70
+ not_extended: 510,
71
+ network_authentication_required: 511
72
+ }.each do |status, code|
73
+ it "returns #{code} as code and #{status} as status" do
74
+ expect(Code.evaluate(<<~INPUT)).to eq(Code.evaluate(<<~OUTPUT))
75
+ response = Http.#{verb}("https://httpbin.org/status/#{code}")
76
+ [response.code, response.status]
77
+ INPUT
78
+ [#{code}, "#{status}"]
79
+ OUTPUT
80
+
81
+ expect(Code.evaluate(<<~INPUT)).to eq(Code.evaluate(<<~OUTPUT))
82
+ response = Http.fetch("#{verb}", "https://httpbin.org/status/#{code}")
83
+ [response.code, response.status]
84
+ INPUT
85
+ [#{code}, "#{status}"]
86
+ OUTPUT
87
+ end
88
+ end
89
+ end
90
+ end
91
+ end
@@ -14,7 +14,7 @@ RSpec.describe Code::Type do
14
14
  describe "invalid" do
15
15
  ["1 - :a", "2 * true"].each do |input|
16
16
  it input do
17
- expect { Code.evaluate(input) }.to raise_error(Code::Error::TypeError)
17
+ expect { Code.evaluate(input) }.to raise_error(Code::Error)
18
18
  end
19
19
  end
20
20
  end
data/spec/code_spec.rb CHANGED
@@ -74,6 +74,10 @@ RSpec.describe Code do
74
74
  Html.link_to
75
75
  Html.link_to('/')
76
76
  Html.link_to('Home','/')
77
+ Json.parse('1')
78
+ Json.parse('[]')
79
+ Json.parse('{}')
80
+ Json.parse('random-string')
77
81
  ] + ["Time.hour >= 6 and Time.hour <= 23"]
78
82
  ).each { |input| it(input) { described_class.evaluate(input) } }
79
83
 
@@ -311,17 +315,18 @@ RSpec.describe Code do
311
315
  ["[1, 2, 3].none?", "false"],
312
316
  ["[1, 2, 3].none?(&:even?)", "false"],
313
317
  ["'{1} {2}'", "'1 2'"],
318
+ %w[Json.parse("1") 1],
314
319
  ["", ""]
315
320
  ].each do |input, expected|
316
321
  it "#{input} == #{expected}" do
317
322
  output = StringIO.new
318
- input = described_class.evaluate(input, output:)
319
- expected = described_class.evaluate(expected)
320
- expect(input).to eq(expected)
323
+ code_input = described_class.evaluate(input, output:)
324
+ code_expected = described_class.evaluate(expected)
325
+ expect(code_input).to eq(code_expected)
321
326
  expect(output.string).to eq("")
322
- next if input.is_a?(Code::Object::Decimal)
327
+ next if code_input.is_a?(Code::Object::Decimal)
323
328
 
324
- expect(input.to_json).to eq(expected.to_json)
329
+ expect(code_input.to_json).to eq(code_expected.to_json)
325
330
  end
326
331
  end
327
332
 
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "../lib/code-ruby"
4
+ require "sinatra"
5
+ require "webmock/rspec"
6
+
7
+ class FakeHttpBin < Sinatra::Base
8
+ set :host_authorization, { permitted_hosts: ["httpbin.org"] }
9
+
10
+ %w[GET HEAD POST PUT DELETE CONNECT OPTIONS TRACE PATCH].each do |verb|
11
+ route verb, "/status/:status" do
12
+ status params[:status].to_i
13
+ end
14
+ end
15
+ end
16
+
17
+ WebMock.disable_net_connect!
18
+
19
+ RSpec.configure do |config|
20
+ config.before { stub_request(:any, /httpbin\.org/).to_rack(FakeHttpBin) }
21
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: code-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dorian Marié
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-05 00:00:00.000000000 Z
11
+ date: 2025-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: base64
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: bigdecimal
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -94,6 +108,34 @@ dependencies:
94
108
  - - ">="
95
109
  - !ruby/object:Gem::Version
96
110
  version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: net-http
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: uri
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
97
139
  - !ruby/object:Gem::Dependency
98
140
  name: zeitwerk
99
141
  requirement: !ruby/object:Gem::Requirement
@@ -119,6 +161,7 @@ files:
119
161
  - ".github/workflows/ci.yml"
120
162
  - ".gitignore"
121
163
  - ".node-version"
164
+ - ".npm-version"
122
165
  - ".prettierignore"
123
166
  - ".rspec"
124
167
  - ".rubocop.yml"
@@ -134,6 +177,8 @@ files:
134
177
  - bin/bundle-audit
135
178
  - bin/bundler-audit
136
179
  - bin/code
180
+ - bin/console
181
+ - bin/dorian
137
182
  - bin/rspec
138
183
  - bin/rubocop
139
184
  - bin/test
@@ -181,6 +226,7 @@ files:
181
226
  - lib/code/object/function.rb
182
227
  - lib/code/object/global.rb
183
228
  - lib/code/object/html.rb
229
+ - lib/code/object/http.rb
184
230
  - lib/code/object/identifier_list.rb
185
231
  - lib/code/object/integer.rb
186
232
  - lib/code/object/json.rb
@@ -245,6 +291,7 @@ files:
245
291
  - spec/code/object/decimal_spec.rb
246
292
  - spec/code/object/dictionary_spec.rb
247
293
  - spec/code/object/function_spec.rb
294
+ - spec/code/object/http_spec.rb
248
295
  - spec/code/object/integer_spec.rb
249
296
  - spec/code/object/list_spec.rb
250
297
  - spec/code/object/nothing_spec.rb
@@ -276,7 +323,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
276
323
  requirements:
277
324
  - - ">="
278
325
  - !ruby/object:Gem::Version
279
- version: 3.3.0
326
+ version: '3.1'
280
327
  required_rubygems_version: !ruby/object:Gem::Requirement
281
328
  requirements:
282
329
  - - ">="