mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
0b87e7543f
Rolling out frozen string literals further by freezing all string literals in core specs.
174 lines
4.6 KiB
Ruby
174 lines
4.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) the OpenProject GmbH
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See COPYRIGHT and LICENSE files for more details.
|
|
#++
|
|
|
|
require "spec_helper"
|
|
|
|
RSpec.describe Users::SetAttributesService, type: :model do
|
|
subject(:call) { instance.call(params) }
|
|
|
|
let(:current_user) { build_stubbed(:user) }
|
|
|
|
let(:contract_instance) do
|
|
contract = double("contract_instance")
|
|
allow(contract)
|
|
.to receive(:validate)
|
|
.and_return(contract_valid)
|
|
allow(contract)
|
|
.to receive(:errors)
|
|
.and_return(contract_errors)
|
|
contract
|
|
end
|
|
|
|
let(:contract_errors) { double("contract_errors") }
|
|
let(:contract_valid) { true }
|
|
let(:model_valid) { true }
|
|
|
|
let(:instance) do
|
|
described_class.new(user: current_user,
|
|
model: model_instance,
|
|
contract_class:,
|
|
contract_options: {})
|
|
end
|
|
let(:model_instance) { User.new }
|
|
let(:contract_class) do
|
|
allow(Users::CreateContract)
|
|
.to receive(:new)
|
|
.and_return(contract_instance)
|
|
|
|
Users::CreateContract
|
|
end
|
|
|
|
let(:params) { {} }
|
|
|
|
before do
|
|
allow(model_instance)
|
|
.to receive(:valid?)
|
|
.and_return(model_valid)
|
|
end
|
|
|
|
context "for a new record" do
|
|
let(:model_instance) do
|
|
User.new
|
|
end
|
|
|
|
it "is successful" do
|
|
expect(call)
|
|
.to be_success
|
|
end
|
|
|
|
it "returns the instance as the result" do
|
|
expect(call.result)
|
|
.to eql model_instance
|
|
end
|
|
|
|
it "initializes the notification settings" do
|
|
expect(call.result.notification_settings.length)
|
|
.to be 1
|
|
|
|
expect(call.result.notification_settings)
|
|
.to(all(be_a(NotificationSetting).and(be_new_record)))
|
|
end
|
|
|
|
it "sets the default language", with_settings: { default_language: "de" } do
|
|
call
|
|
|
|
expect(model_instance.language)
|
|
.to eql "de"
|
|
end
|
|
|
|
context "with params" do
|
|
let(:params) do
|
|
{
|
|
firstname: "Foo",
|
|
lastname: "Bar"
|
|
}
|
|
end
|
|
|
|
it "assigns the params" do
|
|
call
|
|
|
|
expect(model_instance.firstname).to eq "Foo"
|
|
expect(model_instance.lastname).to eq "Bar"
|
|
end
|
|
end
|
|
|
|
context "with attributes for the user`s preferences" do
|
|
let(:params) do
|
|
{
|
|
pref: {
|
|
auto_hide_popups: true
|
|
}
|
|
}
|
|
end
|
|
|
|
it "initializes the user`s preferences with those attributes" do
|
|
expect(call.result.pref)
|
|
.to be_auto_hide_popups
|
|
end
|
|
end
|
|
end
|
|
|
|
context "with an invalid contract" do
|
|
let(:contract_valid) { false }
|
|
let(:expect_time_instance_save) do
|
|
expect(model_instance)
|
|
.not_to receive(:save)
|
|
end
|
|
|
|
it "returns failure" do
|
|
expect(subject)
|
|
.not_to be_success
|
|
end
|
|
|
|
it "returns the contract's errors" do
|
|
expect(call.errors)
|
|
.to eql(contract_errors)
|
|
end
|
|
end
|
|
|
|
describe ".placeholder_name" do
|
|
it "given an email it uses the local part as first and the domain as the last name" do
|
|
email = "xxxhunterxxx@openproject.com"
|
|
first, last = instance.send(:placeholder_name, email)
|
|
|
|
expect(first).to eq "xxxhunterxxx"
|
|
expect(last).to eq "@openproject.com"
|
|
end
|
|
|
|
it "trims names if they are too long (> 30 characters)" do
|
|
email = "hallowurstsalatgetraenkebuechse@veryopensuchproject.openproject.com"
|
|
first, last = instance.send(:placeholder_name, email)
|
|
|
|
expect(first).to eq "hallowurstsalatgetraenkebue..."
|
|
expect(last).to eq "@veryopensuchproject.openpro..."
|
|
end
|
|
end
|
|
end
|