blob: 35fe541c940cb800ec5d1ef730c03cf1753ad7b8 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'spec_helper'
require 'whimsy/asf'
describe ASF::Person do
it "ldap_parse_cn_DRAFT('', false) should return [nil, []]" do
res = ASF::Person.ldap_parse_cn_DRAFT('', false)
expect(res).to eq([nil, []])
end
it "ldap_parse_cn_DRAFT('', true) should return [nil, []]" do
res = ASF::Person.ldap_parse_cn_DRAFT('', true)
expect(res).to eq([nil, []])
end
# If there is only one name, it must be the surname
it "ldap_parse_cn_DRAFT('one', false) should return ['one', []]" do
res = ASF::Person.ldap_parse_cn_DRAFT('one', false)
expect(res).to eq(['one', []])
end
it "ldap_parse_cn_DRAFT('one', true) should return ['one', []]" do
res = ASF::Person.ldap_parse_cn_DRAFT('one', true)
expect(res).to eq(['one', []])
end
it "ldap_parse_cn_DRAFT('one two', false) should return ['two', ['one']]" do
res = ASF::Person.ldap_parse_cn_DRAFT('one two', false)
expect(res).to eq(['two', ['one']])
end
it "ldap_parse_cn_DRAFT('one two', true) should return ['one', ['two']]" do
res = ASF::Person.ldap_parse_cn_DRAFT('one two', true)
expect(res).to eq(['one', ['two']])
end
it "ldap_parse_cn_DRAFT('one two three', false) should return ['three', ['one', 'two']]" do
res = ASF::Person.ldap_parse_cn_DRAFT('one two three', false)
expect(res).to eq(['three', ['one', 'two']])
end
it "ldap_parse_cn_DRAFT('one two three', tru) should return ['one', ['two', 'three']]" do
res = ASF::Person.ldap_parse_cn_DRAFT('one two three', true)
expect(res).to eq(['one', ['two', 'three']])
end
end