class Faker::DrivingLicence

def british_driving_licence(legacy_last_name = NOT_GIVEN, legacy_initials = NOT_GIVEN, legacy_gender = NOT_GIVEN, legacy_date_of_birth = NOT_GIVEN, last_name: Faker::Name.last_name, initials: Faker::Name.initials, gender: random_gender, date_of_birth: Faker::Date.birthday(min_age: 18, max_age: 65))

Returns:
  • (String) -

Parameters:
  • date_of_birth (String) -- The date of birth of the driving licence's owner.
  • gender (String) -- The gender of the driving licence's owner.
  • initials (String) -- The initials of the driving licence's owner.
  • last_name (String) -- The last name of the driving licence's owner.
def british_driving_licence(legacy_last_name = NOT_GIVEN, legacy_initials = NOT_GIVEN, legacy_gender = NOT_GIVEN, legacy_date_of_birth = NOT_GIVEN, last_name: Faker::Name.last_name, initials: Faker::Name.initials, gender: random_gender, date_of_birth: Faker::Date.birthday(min_age: 18, max_age: 65))
  warn_for_deprecated_arguments do |keywords|
    keywords << :last_name if legacy_last_name != NOT_GIVEN
    keywords << :initials if legacy_initials != NOT_GIVEN
    keywords << :gender if legacy_gender != NOT_GIVEN
    keywords << :date_of_birth if legacy_date_of_birth != NOT_GIVEN
  end
  [
    gb_licence_padding(last_name, 5),
    gb_licence_year(date_of_birth, gender),
    gb_licence_padding(initials, 2),
    gb_licence_checksum
  ].join
end

def gb_licence_checksum

def gb_licence_checksum
  regexify(/[0-9][A-Z][A-Z]/)
end

def gb_licence_padding(str, num_chars)

def gb_licence_padding(str, num_chars)
  prepped = str.upcase.gsub(%r{[^A-Z]}, '') + GB_PADDING
  prepped[0..(num_chars - 1)]
end

def gb_licence_year(dob, gender)

def gb_licence_year(dob, gender)
  decade = (dob.year / 10) % 10
  year = dob.year % 10
  month = gender == :female ? dob.month + 50 : dob.month
  # Rubocop's preferred formatting is pretty gory
  # rubocop:disable Style/FormatString
  "#{decade}#{'%02d' % month}#{'%02d' % dob.day}#{year}"
  # rubocop:enable Style/FormatString
end

def northern_irish_driving_licence

Returns:
  • (String) -
def northern_irish_driving_licence
  Faker::Number.number(digits: 8).to_s
end

def random_gender

def random_gender
  %i[male female].sample(random: Faker::Config.random)
end

def uk_driving_licence(*args)

Returns:
  • (String) -

Overloads:
  • uk_driving_licence()
  • uk_driving_licence(last_name, initials, gender, date_of_birth)

Parameters:
  • date_of_birth (String) -- The date of birth of the driving licence's owner.
  • gender (String) -- The gender of the driving licence's owner.
  • initials (String) -- The initials of the driving licence's owner.
  • last_name (String) -- The last name of the driving licence's owner.
def uk_driving_licence(*args)
  if Faker::Config.random.rand < NI_CHANCE
    northern_irish_driving_licence
  else
    british_driving_licence(*args)
  end
end

def usa_driving_licence(state = 'California')

Returns:
  • (String) -
def usa_driving_licence(state = 'California')
  bothify(fetch("driving_licence.usa.#{state.to_s.strip.downcase.gsub(' ', '_')}"))
rescue I18n::MissingTranslationData => _e
  raise InvalidStatePassed, "Invalid state code passed for USA, '#{state}'"
end