Sha256: 95034695243d02c333ce8928d984f658e382af848f554c9f031234880d9b3a55

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 KB

Contents

# frozen_string_literal: true

require 'spec_helper'

describe Acfs::Resource::Attributes::UUID do
  let(:type) { Acfs::Resource::Attributes::UUID.new }

  describe '#cast' do
    subject(:cast) { -> { type.cast(value) } }

    context 'with nil' do
      let(:value) { nil }

      it { expect(cast.call).to eq nil }
    end

    context 'with empty string' do
      let(:value) { '' }

      it { expect(cast.call).to eq nil }
    end

    context 'with blank string' do
      let(:value) { "  \t" }

      it { expect(cast.call).to eq nil }
    end

    context 'with string UUID' do
      let(:value) { '450b7a40-94ad-11e3-baa8-0800200c9a66' }

      it { expect(cast.call).to be_a String }
      it { expect(cast.call).to eq value }
    end

    context 'with invalid string' do
      let(:value) { 'invalid string' }

      it { is_expected.to raise_error TypeError, /invalid UUID/i }
    end

    context 'with invalid UUID' do
      let(:value) { 'xxxxxxxx-yyyy-11e3-baa8-0800200c9a66' }

      it { is_expected.to raise_error TypeError, /invalid UUID/i }
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
acfs-1.7.0 spec/acfs/resource/attributes/uuid_spec.rb