Skip to content
Snippets Groups Projects
Commit 631d7911 authored by inertia's avatar inertia
Browse files

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
......@@ -112,20 +112,20 @@ namespace :test do
[k, v] if keys.include? k.to_sym
end.compact.to_h
sbd_exchange_rate = witness[:sbd_exchange_rate]
base = sbd_exchange_rate[:base].to_f
hbd_exchange_rate = witness[:hbd_exchange_rate] || witness[:sbd_exchange_rate]
base = hbd_exchange_rate[:base].to_f
if (quote = sbd_exchange_rate[:quote].to_f) > 0
if (quote = hbd_exchange_rate[:quote].to_f) > 0
rate = (base / quote).round(3)
witnesses[witness.owner][:sbd_exchange_rate] = rate
witnesses[witness.owner][:hbd_exchange_rate] = rate
else
witnesses[witness.owner][:sbd_exchange_rate] = nil
witnesses[witness.owner][:hbd_exchange_rate] = nil
end
last_sbd_exchange_update = witness[:last_sbd_exchange_update]
last_sbd_exchange_update = Time.parse(last_sbd_exchange_update + 'Z')
last_sbd_exchange_elapsed = '%.2f hours ago' % ((Time.now.utc - last_sbd_exchange_update) / 60)
witnesses[witness.owner][:last_sbd_exchange_elapsed] = last_sbd_exchange_elapsed
last_hbd_exchange_update = witness[:last_hbd_exchange_update] || witness[:last_sbd_exchange_update]
last_hbd_exchange_update = Time.parse(last_hbd_exchange_update + 'Z')
last_hbd_exchange_elapsed = '%.2f hours ago' % ((Time.now.utc - last_hbd_exchange_update) / 60)
witnesses[witness.owner][:last_hbd_exchange_elapsed] = last_hbd_exchange_elapsed
end
end
end
......
......@@ -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
......
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment