# frozen_string_literal: true

require "test_helper"
require "customer_info"
require "trust_level_repo"
require "trust_level"

API::REDIS = FakeRedis.new
CustomerPlan::REDIS = Minitest::Mock.new
PlanInfo::DB = FakeDB.new(
	["test"] => [
		{
			"start_date" => Time.parse("2020-01-01"),
			"activation_date" => Time.parse("2021-01-01")
		}
	]
)

class CustomerInfoTest < Minitest::Test
	def test_info_does_not_crash
		sgx = Minitest::Mock.new
		sgx.expect(:registered?, false)

		CustomerPlan::DB.expect(
			:query_one,
			EMPromise.resolve({ start_date: Time.now }),
			[String, "test"]
		)

		cust = customer(sgx: sgx, plan_name: "test_usd")

		assert cust.info.sync.form
		assert_mock sgx
	end
	em :test_info_does_not_crash

	def test_admin_info_does_not_crash
		sgx = Minitest::Mock.new
		sgx.expect(:registered?, false)
		fwd = CustomerFwd.for(uri: "tel:+12223334444", timeout: 15)
		sgx.expect(:fwd, fwd)
		sgx.expect(:registered?, false)

		CustomerPlan::DB.expect(
			:query_one,
			EMPromise.resolve({ start_date: Time.now }),
			[String, "test"]
		)

		cust = customer(sgx: sgx, plan_name: "test_usd")

		trust_repo = Minitest::Mock.new
		trust_repo.expect(:find, TrustLevel::Basement, [cust])

		assert cust.admin_info(trust_level_repo: trust_repo).sync.form
		assert_mock sgx
		assert_mock trust_repo
	end
	em :test_admin_info_does_not_crash

	def test_admin_info_with_tel_does_not_crash
		registered = Struct.new(:phone).new("+12223334444")
		fwd = CustomerFwd.for(uri: "tel:+12223334444", timeout: 15)
		sgx = Struct.new(:registered?, :fwd).new(registered, fwd)

		CustomerPlan::DB.expect(
			:query_one,
			EMPromise.resolve({ start_date: Time.now }),
			[String, "test"]
		)

		cust = customer(sgx: sgx, plan_name: "test_usd")

		call_attempt_repo = Minitest::Mock.new
		call_attempt_repo.expect(
			:find_outbound,
			CallAttempt::Unsupported.new(direction: :outbound),
			[cust, "+1", { call_id: "dry_run" }]
		)

		trust_repo = Minitest::Mock.new
		trust_repo.expect(:find, TrustLevel::Basement, [cust])

		assert cust
			.admin_info(
				trust_level_repo: trust_repo,
				call_attempt_repo: call_attempt_repo
			).sync.form
		assert_mock call_attempt_repo
		assert_mock trust_repo
	end
	em :test_admin_info_with_tel_does_not_crash

	def test_inactive_info_does_not_crash
		sgx = Minitest::Mock.new
		sgx.expect(:registered?, false)

		plan = CustomerPlan.new("test", plan: nil, expires_at: nil)
		cust = Customer.new(
			"test",
			Blather::JID.new("test@example.net"),
			plan: plan,
			sgx: sgx
		)
		assert cust.info.sync.form
		assert_mock sgx
	end
	em :test_inactive_info_does_not_crash

	def test_inactive_admin_info_does_not_crash
		sgx = Minitest::Mock.new
		sgx.expect(:registered?, false)
		sgx.expect(:registered?, false)
		sgx.expect(:fwd, CustomerFwd::None.new(uri: nil, timeout: nil))

		plan = CustomerPlan.new("test", plan: nil, expires_at: nil)
		cust = Customer.new(
			"test",
			Blather::JID.new("test@example.net"),
			plan: plan,
			sgx: sgx
		)

		trust_repo = Minitest::Mock.new
		trust_repo.expect(:find, TrustLevel::Basement, [cust])

		assert cust.admin_info(trust_level_repo: trust_repo).sync.form
		assert_mock sgx
		assert_mock trust_repo
	end
	em :test_inactive_admin_info_does_not_crash

	def test_missing_customer_admin_info_does_not_crash
		cust = CustomerInfoForm::NoCustomer.new
		assert cust.admin_info.form
	end
	em :test_missing_customer_admin_info_does_not_crash
end
