# frozen_string_literal: true # Copyright (c) 2018-2019 Yegor Bugayenko # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the 'Software'), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. require 'loog' require 'minitest/autorun' require 'webmock/minitest' require_relative '../../lib/zold/wts' # WTS test. # Author:: Yegor Bugayenko (yegor256@gmail.com) # Copyright:: Copyright (c) 2018-2019 Yegor Bugayenko # License:: MIT class TestWTS < Minitest::Test KEY = '0000000000000000-b416493aefae4ca487c4739050aaec15' def test_pulls WebMock.allow_net_connect! wts = Zold::WTS.new(KEY, log: Loog::VERBOSE) job = wts.pull wts.wait(job) assert(!job.nil?) end def test_finds_transactions WebMock.allow_net_connect! wts = Zold::WTS.new(KEY, log: Loog::VERBOSE) job = wts.pull wts.wait(job) assert_equal(0, wts.find(details: /^for hosting$/).count) end def test_retrieves_wallet_id WebMock.allow_net_connect! wts = Zold::WTS.new(KEY, log: Loog::VERBOSE) assert(!wts.id.nil?) end def test_retrieves_balance WebMock.allow_net_connect! wts = Zold::WTS.new(KEY, log: Loog::VERBOSE) job = wts.pull wts.wait(job) assert(!wts.balance.nil?) end def test_retrieves_usd_rate WebMock.allow_net_connect! wts = Zold::WTS.new(KEY, log: Loog::VERBOSE) rate = wts.usd_rate assert(!rate.nil?) end def test_works_with_fake WebMock.allow_net_connect! wts = Zold::WTS::Fake.new job = wts.pull wts.wait(job) assert(!wts.balance.zero?) end def test_works_with_webmock WebMock.disable_net_connect! stub_request(:get, 'https://wts.zold.io/usd_rate').to_return(body: '1.234') wts = Zold::WTS.new('fake', log: Loog::VERBOSE) assert_equal(1.234, wts.usd_rate) end end