require 'spec_helper' describe "i18n integrity checks" do it 'should have an i18n key for all trust levels' do TrustLevel.all.each do |ts| ts.name.should_not =~ /translation missing/ end end it "needs an i18n key (description) for each Site Setting" do SiteSetting.all_settings.each do |s| next if s[:setting] =~ /^test/ s[:description].should_not =~ /translation missing/ end end it "needs an i18n key (notification_types) for each Notification type" do Notification.types.keys.each do |type| I18n.t("notification_types.#{type}").should_not =~ /translation missing/ end end it "has valid YAML for client" do Dir["#{Rails.root}/config/locales/client.*.yml"].each do |f| locale = /.*\.([^.]{2,})\.yml$/.match(f)[1] client = YAML.load_file("#{Rails.root}/config/locales/client.#{locale}.yml") client.count.should == 1 client[locale].should_not == nil client[locale].count.should == 2 client[locale]["js"].should_not == nil client[locale]["admin_js"].should_not == nil end end it "has valid YAML for server" do Dir["#{Rails.root}/config/locales/server.*.yml"].each do |f| locale = /.*\.([^.]{2,})\.yml$/.match(f)[1] server = YAML.load_file("#{Rails.root}/config/locales/server.#{locale}.yml") server.count.should == 1 server[locale].should_not == nil end end it "does not overwrite another language" do Dir["#{Rails.root}/config/locales/*.yml"].each do |f| locale = /.*\.([^.]{2,})\.yml$/.match(f)[1] + ':' IO.foreach(f) do |line| line.strip! next if line.start_with? "#" next if line.start_with? "---" next if line.blank? line.should eq locale break end end end end