spectre-core 1.15.2 → 2.0.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.
- checksums.yaml +4 -4
- data/exe/spectre +271 -463
- data/lib/spectre/assertion.rb +118 -250
- data/lib/spectre/expectation.rb +89 -0
- data/lib/spectre/helpers.rb +56 -59
- data/lib/spectre/version.rb +3 -0
- data/lib/spectre.rb +1510 -334
- metadata +57 -32
- data/lib/spectre/async.rb +0 -31
- data/lib/spectre/bag.rb +0 -17
- data/lib/spectre/curl.rb +0 -398
- data/lib/spectre/diagnostic.rb +0 -39
- data/lib/spectre/environment.rb +0 -30
- data/lib/spectre/http/basic_auth.rb +0 -25
- data/lib/spectre/http/keystone.rb +0 -99
- data/lib/spectre/http.rb +0 -394
- data/lib/spectre/logging/console.rb +0 -156
- data/lib/spectre/logging/file.rb +0 -106
- data/lib/spectre/logging.rb +0 -183
- data/lib/spectre/mixin.rb +0 -61
- data/lib/spectre/reporter/console.rb +0 -104
- data/lib/spectre/reporter.rb +0 -17
- data/lib/spectre/resources.rb +0 -53
data/lib/spectre/helpers.rb
CHANGED
@@ -1,26 +1,35 @@
|
|
1
|
-
require_relative '../spectre'
|
2
|
-
|
3
1
|
require 'securerandom'
|
4
2
|
require 'json'
|
5
3
|
require 'date'
|
6
4
|
require 'ostruct'
|
7
|
-
require 'jsonpath'
|
8
5
|
|
9
6
|
class ::String
|
7
|
+
##
|
8
|
+
# Parses the string as JSON and returns an +OpenStruct+
|
9
|
+
#
|
10
10
|
def as_json
|
11
11
|
JSON.parse(self, object_class: OpenStruct)
|
12
12
|
end
|
13
13
|
|
14
|
+
##
|
15
|
+
# Parses the string as a date time object
|
16
|
+
#
|
14
17
|
def as_date
|
15
18
|
DateTime.parse(self)
|
16
19
|
end
|
17
20
|
|
21
|
+
##
|
22
|
+
# Parses the string as a date time object and returns it as a unix timestamp
|
23
|
+
#
|
18
24
|
def as_timestamp
|
19
25
|
DateTime.parse(self).to_time.to_i
|
20
26
|
end
|
21
27
|
|
28
|
+
##
|
29
|
+
# Replaces placeholder in style of +#{placeholder}+ with the given +Hash+
|
30
|
+
#
|
22
31
|
def with mapping
|
23
|
-
return self unless mapping
|
32
|
+
return self unless mapping.is_a? Hash
|
24
33
|
|
25
34
|
new_string = self
|
26
35
|
|
@@ -31,28 +40,19 @@ class ::String
|
|
31
40
|
new_string
|
32
41
|
end
|
33
42
|
|
43
|
+
##
|
44
|
+
# Trims the string to the given length and adds +...+ at the end
|
34
45
|
def trim size = 50
|
35
|
-
if (
|
36
|
-
return self[0..size-4] + '...'
|
37
|
-
end
|
46
|
+
return "#{self[0..size - 4]}..." if (length + 3) > size
|
38
47
|
|
39
48
|
self
|
40
49
|
end
|
41
50
|
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
begin
|
46
|
-
JsonPath.on(self, path)
|
47
|
-
rescue MultiJson::ParseError
|
48
|
-
# do nothing and return nil
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
# File helpers
|
53
|
-
|
51
|
+
##
|
52
|
+
# Interprets the string as a file path and reads its content
|
53
|
+
#
|
54
54
|
def content with: nil
|
55
|
-
|
55
|
+
raise "'#{self}' is not a file path, or the file does not exist." unless File.exist? self
|
56
56
|
|
57
57
|
file_content = File.read(self)
|
58
58
|
|
@@ -63,77 +63,74 @@ class ::String
|
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
|
+
##
|
67
|
+
# Interprets the string as a file path and returns its size
|
68
|
+
#
|
66
69
|
def file_size
|
67
|
-
|
70
|
+
raise "'#{self}' is not a file path, or the file does not exist." unless File.exist? self
|
68
71
|
|
69
72
|
File.size(self)
|
70
73
|
end
|
71
74
|
|
75
|
+
##
|
76
|
+
# Interprets the string as a file path and returns +true+ if is exists, +false+ otherwise
|
77
|
+
#
|
72
78
|
def exists?
|
73
79
|
File.exist? self
|
74
80
|
end
|
75
81
|
|
82
|
+
##
|
83
|
+
# Interprets the string as a file path and removes it
|
84
|
+
#
|
76
85
|
def remove!
|
77
|
-
|
86
|
+
raise "'#{self}' is not a file path, or the file does not exist." unless File.exist? self
|
78
87
|
|
79
88
|
File.delete self
|
80
89
|
end
|
81
90
|
end
|
82
91
|
|
83
92
|
class ::OpenStruct
|
84
|
-
def
|
85
|
-
|
93
|
+
def each(&)
|
94
|
+
to_h.each(&)
|
86
95
|
end
|
87
96
|
|
88
|
-
def
|
89
|
-
|
90
|
-
|
91
|
-
|
97
|
+
def to_json(*, **)
|
98
|
+
to_h
|
99
|
+
.transform_values { |x| x.is_a?(OpenStruct) ? x.to_h : x }
|
100
|
+
.to_json(*, **)
|
92
101
|
end
|
93
102
|
|
94
|
-
def default_to! defaults
|
103
|
+
def default_to! defaults = {}, **kwargs
|
104
|
+
defaults = kwargs if kwargs.any?
|
105
|
+
|
95
106
|
defaults.each_key do |key|
|
96
|
-
|
97
|
-
self[key] = defaults[key]
|
98
|
-
end
|
107
|
+
self[key] = defaults[key] unless to_h.key? key
|
99
108
|
end
|
100
109
|
end
|
101
|
-
|
102
|
-
alias :defaults_to! :default_to!
|
103
110
|
end
|
104
111
|
|
105
112
|
class ::Hash
|
106
|
-
def
|
107
|
-
|
108
|
-
end
|
113
|
+
def default_to! defaults = {}, **kwargs
|
114
|
+
defaults = kwargs if kwargs.any?
|
109
115
|
|
110
|
-
def default_to! defaults
|
111
116
|
defaults.each_key do |key|
|
112
|
-
|
113
|
-
self[key] = defaults[key]
|
114
|
-
end
|
117
|
+
self[key] = defaults[key] unless key? key
|
115
118
|
end
|
116
119
|
end
|
117
|
-
|
118
|
-
alias :defaults_to! :default_to!
|
119
|
-
end
|
120
|
-
|
121
|
-
class ::Array
|
122
|
-
def first_element
|
123
|
-
self[0]
|
124
|
-
end
|
125
|
-
|
126
|
-
def last_element
|
127
|
-
self[-1]
|
128
|
-
end
|
129
120
|
end
|
130
121
|
|
131
|
-
|
132
|
-
|
122
|
+
module Spectre
|
123
|
+
module Helpers
|
124
|
+
class << self
|
125
|
+
def uuid length = niL
|
126
|
+
return SecureRandom.hex(length / 2) if length
|
133
127
|
|
134
|
-
|
135
|
-
end
|
128
|
+
SecureRandom.uuid
|
129
|
+
end
|
136
130
|
|
137
|
-
def now
|
138
|
-
|
131
|
+
def now
|
132
|
+
Time.now
|
133
|
+
end
|
134
|
+
end
|
135
|
+
end
|
139
136
|
end
|