1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2020-03-28 00:22:51 +01:00
parent 296f68816c
commit f234d51eab
50 changed files with 739 additions and 377 deletions

View file

@ -0,0 +1,32 @@
require_relative '../../../spec_helper'
require_relative '../sha256/shared/constants'
describe "Digest::SHA2#hexdigest" do
it "returns a SHA256 hexdigest by default" do
cur_digest = Digest::SHA2.new
cur_digest.hexdigest.should == SHA256Constants::BlankHexdigest
# add something to check that the state is reset later
cur_digest << "test"
cur_digest.hexdigest(SHA256Constants::Contents).should == SHA256Constants::Hexdigest
# second invocation is intentional, to make sure there are no side-effects
cur_digest.hexdigest(SHA256Constants::Contents).should == SHA256Constants::Hexdigest
# after all is done, verify that the digest is in the original, blank state
cur_digest.hexdigest.should == SHA256Constants::BlankHexdigest
end
end
describe "Digest::SHA2.hexdigest" do
it "returns a SHA256 hexdigest by default" do
Digest::SHA2.hexdigest(SHA256Constants::Contents).should == SHA256Constants::Hexdigest
# second invocation is intentional, to make sure there are no side-effects
Digest::SHA2.hexdigest(SHA256Constants::Contents).should == SHA256Constants::Hexdigest
Digest::SHA2.hexdigest("").should == SHA256Constants::BlankHexdigest
end
end