Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
hive-ruby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hive-ruby
Commits
631d7911
Commit
631d7911
authored
4 years ago
by
inertia
Browse files
Options
Downloads
Patches
Plain Diff
initial tests for re-branding (re:...
initial tests for re-branding (re:
tasks_without_projects_yet#1
)
parent
10901433
No related branches found
No related tags found
No related merge requests found
Pipeline
#13984
failed
4 years ago
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Rakefile
+9
-9
9 additions, 9 deletions
Rakefile
test/hive/api_test.rb
+10
-2
10 additions, 2 deletions
test/hive/api_test.rb
test/hive/bridge_test.rb
+15
-3
15 additions, 3 deletions
test/hive/bridge_test.rb
test/hive/broadcast_test.rb
+5
-1
5 additions, 1 deletion
test/hive/broadcast_test.rb
with
39 additions
and
15 deletions
Rakefile
+
9
−
9
View file @
631d7911
...
...
@@ -112,20 +112,20 @@ namespace :test do
[
k
,
v
]
if
keys
.
include?
k
.
to_sym
end
.
compact
.
to_h
s
bd_exchange_rate
=
witness
[
:sbd_exchange_rate
]
base
=
s
bd_exchange_rate
[
:base
].
to_f
hbd_exchange_rate
=
witness
[
:h
bd_exchange_rate
]
||
witness
[
:sbd_exchange_rate
]
base
=
h
bd_exchange_rate
[
:base
].
to_f
if
(
quote
=
s
bd_exchange_rate
[
:quote
].
to_f
)
>
0
if
(
quote
=
h
bd_exchange_rate
[
:quote
].
to_f
)
>
0
rate
=
(
base
/
quote
).
round
(
3
)
witnesses
[
witness
.
owner
][
:
s
bd_exchange_rate
]
=
rate
witnesses
[
witness
.
owner
][
:
h
bd_exchange_rate
]
=
rate
else
witnesses
[
witness
.
owner
][
:
s
bd_exchange_rate
]
=
nil
witnesses
[
witness
.
owner
][
:
h
bd_exchange_rate
]
=
nil
end
last_
s
bd_exchange_update
=
witness
[
:last_sbd_exchange_update
]
last_
s
bd_exchange_update
=
Time
.
parse
(
last_
s
bd_exchange_update
+
'Z'
)
last_
s
bd_exchange_elapsed
=
'%.2f hours ago'
%
((
Time
.
now
.
utc
-
last_
s
bd_exchange_update
)
/
60
)
witnesses
[
witness
.
owner
][
:last_
s
bd_exchange_elapsed
]
=
last_
s
bd_exchange_elapsed
last_
h
bd_exchange_update
=
witness
[
:last_hbd_exchange_update
]
||
witness
[
:last_sbd_exchange_update
]
last_
h
bd_exchange_update
=
Time
.
parse
(
last_
h
bd_exchange_update
+
'Z'
)
last_
h
bd_exchange_elapsed
=
'%.2f hours ago'
%
((
Time
.
now
.
utc
-
last_
h
bd_exchange_update
)
/
60
)
witnesses
[
witness
.
owner
][
:last_
h
bd_exchange_elapsed
]
=
last_
h
bd_exchange_elapsed
end
end
end
...
...
This diff is collapsed.
Click to expand it.
test/hive/api_test.rb
+
10
−
2
View file @
631d7911
...
...
@@ -148,7 +148,11 @@ module Hive
when
*
METHOD_NAMES_2_ARGS
then
assert_raises
Hive
::
ArgumentError
,
"expect 2 arguments to raise ArgumentError for:
#{
key
}
"
do
assert
@api
.
send
key
,
[
nil
,
nil
]
begin
assert
@api
.
send
key
,
[
nil
,
nil
]
rescue
MethodNotEnabledError
=>
e
skip
e
.
inspect
end
end
when
*
METHOD_NAMES_3_ARGS
then
...
...
@@ -182,7 +186,11 @@ module Hive
def
test_get_content_wrong_arguments
vcr_cassette
(
'condenser_api_get_content_wrong_arguments'
)
do
assert_raises
Hive
::
ArgumentError
,
'expect argument error'
do
@api
.
get_content
begin
@api
.
get_content
rescue
MethodNotEnabledError
=>
e
skip
e
.
inspect
end
end
assert_raises
Hive
::
ArgumentError
,
'expect argument error'
do
...
...
This diff is collapsed.
Click to expand it.
test/hive/bridge_test.rb
+
15
−
3
View file @
631d7911
...
...
@@ -192,7 +192,11 @@ module Hive
}
assert_raises
Hive
::
ArgumentError
do
@api
.
get_trending_topics
(
options
)
begin
@api
.
get_trending_topics
(
options
)
rescue
Hive
::
PluginNotEnabledError
=>
e
skip
e
.
inspect
end
end
end
end
...
...
@@ -209,7 +213,11 @@ module Hive
}
assert_raises
Hive
::
ArgumentError
do
@api
.
post_notifications
(
options
)
begin
@api
.
post_notifications
(
options
)
rescue
Hive
::
PluginNotEnabledError
=>
e
skip
e
.
inspect
end
end
end
end
...
...
@@ -276,7 +284,11 @@ module Hive
}
assert_raises
Hive
::
ArgumentError
do
@api
.
list_communities
(
options
)
begin
@api
.
list_communities
(
options
)
rescue
Hive
::
PluginNotEnabledError
=>
e
skip
e
.
inspect
end
end
end
end
...
...
This diff is collapsed.
Click to expand it.
test/hive/broadcast_test.rb
+
5
−
1
View file @
631d7911
...
...
@@ -44,7 +44,11 @@ module Hive
}
@core_symbol
,
@debt_symbol
,
@vest_symbol
=
@database_api
.
get_dynamic_global_properties
do
|
dgpo
|
[
dgpo
.
current_supply
.
split
(
' '
).
last
,
dgpo
.
current_sbd_supply
.
split
(
' '
).
last
,
dgpo
.
total_vesting_shares
.
split
(
' '
).
last
]
current_supply
=
dgpo
.
current_supply
current_hbd_supply
=
dgpo
.
current_hbd_supply
||
dgpo
.
current_sbd_supply
total_vesting_shares
=
dgpo
.
total_vesting_shares
[
current_supply
.
split
(
' '
).
last
,
current_hbd_supply
.
split
(
' '
).
last
,
total_vesting_shares
.
split
(
' '
).
last
]
end
@force_serialize
=
true
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment