debian-mirror-gitlab/spec/models/concerns/case_sensitivity_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.6 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
2015-10-24 18:46:33 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe CaseSensitivity do
2015-10-24 18:46:33 +05:30
describe '.iwhere' do
2021-10-27 15:23:28 +05:30
let_it_be(:connection) { Namespace.connection }
2021-02-22 17:27:13 +05:30
let_it_be(:model) do
2018-11-20 20:47:30 +05:30
Class.new(ActiveRecord::Base) do
include CaseSensitivity
self.table_name = 'namespaces'
2022-01-26 12:08:38 +05:30
self.inheritance_column = :_type_disabled
2015-10-24 18:46:33 +05:30
end
end
2022-01-26 12:08:38 +05:30
let_it_be(:model_1) { model.create!(path: 'mOdEl-1', name: 'mOdEl 1', type: Namespaces::UserNamespace.sti_name) }
let_it_be(:model_2) { model.create!(path: 'mOdEl-2', name: 'mOdEl 2', type: Group.sti_name) }
2015-10-24 18:46:33 +05:30
2018-11-20 20:47:30 +05:30
it 'finds a single instance by a single attribute regardless of case' do
expect(model.iwhere(path: 'MODEL-1')).to contain_exactly(model_1)
end
2015-10-24 18:46:33 +05:30
2018-11-20 20:47:30 +05:30
it 'finds multiple instances by a single attribute regardless of case' do
expect(model.iwhere(path: %w(MODEL-1 model-2))).to contain_exactly(model_1, model_2)
end
2015-10-24 18:46:33 +05:30
2018-11-20 20:47:30 +05:30
it 'finds instances by multiple attributes' do
expect(model.iwhere(path: %w(MODEL-1 model-2), name: 'model 1'))
.to contain_exactly(model_1)
end
2015-10-24 18:46:33 +05:30
2021-02-22 17:27:13 +05:30
it 'finds instances by custom Arel attributes' do
expect(model.iwhere(model.arel_table[:path] => 'MODEL-1')).to contain_exactly(model_1)
end
2019-10-12 21:52:04 +05:30
it 'builds a query using LOWER' do
query = model.iwhere(path: %w(MODEL-1 model-2), name: 'model 1').to_sql
expected_query = <<~QRY.strip
SELECT \"namespaces\".* FROM \"namespaces\" WHERE (LOWER(\"namespaces\".\"path\") IN (LOWER('MODEL-1'), LOWER('model-2'))) AND (LOWER(\"namespaces\".\"name\") = LOWER('model 1'))
QRY
2015-10-24 18:46:33 +05:30
2019-10-12 21:52:04 +05:30
expect(query).to eq(expected_query)
2015-10-24 18:46:33 +05:30
end
end
end