require "rails_helper"
require_relative "form/helpers"

RSpec.describe "Notifications Features" do
  include Helpers
  let(:storage_service) { instance_double(Storage::S3Service, get_file_metadata: nil) }

  before do
    allow(Storage::S3Service).to receive(:new).and_return(storage_service)
    allow(storage_service).to receive(:configuration).and_return(OpenStruct.new(bucket_name: "core-test-collection-resources"))
  end

  context "when there are notifications" do
    let!(:user) { FactoryBot.create(:user) }

    context "when the notifications are currently active" do
      before do
        create(:notification, start_date: Time.zone.yesterday, title: "Notification title 1")
        create(:notification, start_date: Time.zone.yesterday, end_date: Time.zone.tomorrow, title: "Notification title 2")
        sign_in user
        visit(root_path)
      end

      it "shows the notification banner" do
        expect(page).to have_content("Notification 1 of")
        expect(page).to have_link("Dismiss")
      end
    end

    context "when the notifications are not currently active" do
      before do
        create(:notification, start_date: Time.zone.yesterday, end_date: Time.zone.yesterday, title: "Notification title 1")
        create(:notification, start_date: Time.zone.tomorrow, title: "Notification title 2")
        create(:notification, start_date: nil, title: "Notification title 3")
        sign_in user
        visit(root_path)
      end

      it "does not show the notifications banner" do
        expect(page).not_to have_content("Notification 1 of")
        expect(page).not_to have_link("Dismiss")
      end
    end
  end
end