true ]); $account = Account::factory()->create([ 'hosted_client_count' => 1000, 'hosted_company_count' => 1000, 'is_flagged' => false, 'key' => '123ifyouknowwhatimean', 'created_at' => now(), 'updated_at' => now(), ]); $account->num_users = 3; $account->save(); $company = Company::factory()->create([ 'account_id' => $account->id, ]); $company->client_registration_fields = ClientRegistrationFields::generate(); $settings = CompanySettings::defaults(); $settings->company_logo = 'https://pdf.invoicing.co/favicon-v2.png'; $settings->website = 'www.invoiceninja.com'; $settings->address1 = 'Address 1'; $settings->address2 = 'Address 2'; $settings->city = 'City'; $settings->state = 'State'; $settings->postal_code = 'Postal Code'; $settings->phone = '555-343-2323'; $settings->email = 'nothingtoofancy@acme.com'; $settings->country_id = '840'; $settings->vat_number = 'vat number'; $settings->id_number = 'id number'; $settings->use_credits_payment = 'always'; $settings->timezone_id = '1'; $settings->entity_send_time = 0; $company->track_inventory = true; $company->settings = $settings; $company->save(); $account->default_company_id = $company->id; $account->save(); Cache::put($account->key, 3000); $this->assertFalse($account->isPaid()); $this->assertTrue(Ninja::isNinja()); $this->assertEquals(20, $account->getDailyEmailLimit()); $this->assertEquals(3000, Cache::get($account->key)); $this->assertTrue($account->emailQuotaExceeded()); Cache::forget('123ifyouknowwhatimean'); } public function testQuotaValidRule() { $account = Account::factory()->create([ 'hosted_client_count' => 1000, 'hosted_company_count' => 1000, 'is_flagged' => false, 'key' => '123ifyouknowwhatimean', 'created_at' => now(), 'updated_at' => now(), ]); $account->num_users = 3; $account->save(); Cache::increment($account->key); $this->assertFalse($account->emailQuotaExceeded()); Cache::forget('123ifyouknowwhatimean'); } public function testEmailSentCount() { $account = Account::factory()->create([ 'hosted_client_count' => 1000, 'hosted_company_count' => 1000, 'is_flagged' => false, 'key' => '123ifyouknowwhatimean', 'created_at' => now(), 'updated_at' => now(), ]); $account->num_users = 3; $account->save(); Cache::put($account->key, 3000); $count = $account->emailsSent(); $this->assertEquals(3000, $count); Cache::forget('123ifyouknowwhatimean'); } }