require "application_system_test_case" # Fixture prerequisites: # * user with multiple units (at least 1 w/o subunit) + subunits, # * user with single unit, # FIXME: add confirmed user without units # * user with no units. # Users need to be active and confirmed. class UnitsTest < ApplicationSystemTestCase def sign_in(...) @link_labels = nil @user = super { click_on t('units.navigation') } end def link_labels @link_labels ||= { new_unit: t('units.index.new_unit'), new_subunit: t('units.unit.new_subunit'), edit: Regexp.union(@user.units.map(&:symbol)) } end def list_symbols all(:table_cell, column_title(:symbol)).map(&:text) end test "index" do sign_in # Wait for the table to appear first, only then check row count. within 'tbody' do assert_selector 'tr', count: @user.units.count end # Cannot #destroy_all due to {dependent: :restrict*} on Unit.subunits association. @user.units.delete_all refresh within 'tbody' do assert_selector 'tr', count: 1 assert_text t('units.no_items') end end test "new and create" do sign_in symbols = list_symbols link_labels.slice!(:new_unit, :new_subunit) type, label = link_labels.to_a.sample all(:link, exact_text: label).sample.then do |link| link.click link.assert_matches_selector :link, disabled: true end attributes = [:symbol, :description] attributes << :multiplier if type == :new_subunit within :table_row, {}, with_focus: true do attributes.map! do |name| field = within(:table_cell, column_title(name)) { find(:fillable_field) } value = case name when :symbol random_string(1..3, 4..field[:maxlength].to_i, allow_blank: false, except: symbols) when :description random_string(0, 1..field[:maxlength].to_i) when :multiplier if rand < 0.5 random_float(min: field[:min].to_f, max: field[:max].to_f) else 10.0**rand(-15..15) end end field.fill_in with: value [name, value] end click_on t('helpers.submit.create') end attributes = attributes.to_h assert_selector '.flash.notice', exact_text: t('units.create.success', unit: attributes[:symbol]) new_symbols = list_symbols within :table do assert_no_selector :fillable_field assert_equal symbols.length + 1, new_symbols.length m = attributes.delete(:multiplier).to_f if type == :new_subunit within :table_row, attributes.transform_keys { |k| column_title(k) } do assert_selector :table_cell, column_title(:multiplier), with_value: m if m end end assert_no_selector :link, disabled: true, exact_text: Regexp.union(link_labels.values) refresh assert_equal new_symbols, list_symbols end test "create updates view in order" do # Destroy and re-create unit to verify its index position is unchanged. sign_in(user: users.select { |u| u.confirmed? && u.units.many? }.sample) link = all(:link_or_button, exact_text: t('units.unit.destroy')).sample symbol = link.ancestor('tr').first(:link).text index = link.ancestor('tbody').all('tr').index { |e| e.first(:link).text == symbol } unit = @user.units.find_by(symbol: symbol) link.click if unit.base_id? find_link(unit.base.symbol).ancestor('tr').click_on(t('units.unit.new_subunit')) fill_in 'unit[multiplier]', with: unit.multiplier else click_on t('units.index.new_unit') end fill_in 'unit[symbol]', with: unit.symbol click_on t('helpers.submit.create') within "tbody > tr:nth-child(#{index+1})" do assert_selector :link, exact_text: symbol end end test "new and edit on validation error" do sign_in # It's impossible to cause validation error on :edit with single unit. link_labels.delete(:edit) unless @user.units.many? type, label = link_labels.to_a.sample link = all(:link, exact_text: label).sample link.click get_values = -> { all(:field).map { |f| [f[:name], f[:value]] }.to_h } values = nil within 'tbody > tr:has(input[type=text])' do # Provide duplicate :symbol as input invalidatable server side. fill_in 'unit[symbol]', with: (@user.units.map(&:symbol) - [find_field('unit[symbol]').value]).sample values = get_values[] send_keys :enter end # Wait for flash before checking link :disabled status. assert_selector '.flash.alert' if type == :edit assert_no_selector :link, exact_text: link[:text] else link.assert_matches_selector :link, disabled: true end within 'tbody > tr:has(input[type=text])' do assert_equal values, get_values[] end end test "new and edit allow opening multiple forms" do # Require at least 1 unit to be able to open 2 forms. sign_in(user: users.select { |u| u.confirmed? && u.units.any? }.sample) links = link_labels.transform_values do |labels| all(:link, exact_text: labels).to_a end random_link = ->{ links.transform_values(&:sample).compact.to_a.sample } # Define