mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 16:02:36 +00:00
26aab7535d
Signed-off-by: Dillon-Brown <dillon.brown@salesagility.com>
126 lines
4.8 KiB
PHP
126 lines
4.8 KiB
PHP
<?php
|
|
|
|
use SuiteCRM\Test\SuitePHPUnitFrameworkTestCase;
|
|
|
|
class ProspectTest extends SuitePHPUnitFrameworkTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
global $current_user;
|
|
get_sugar_config_defaults();
|
|
$current_user = BeanFactory::newBean('Users');
|
|
}
|
|
|
|
public function testProspect(): void
|
|
{
|
|
// Execute the constructor and check for the Object type and attributes
|
|
$prospect = BeanFactory::newBean('Prospects');
|
|
|
|
self::assertInstanceOf('Prospect', $prospect);
|
|
self::assertInstanceOf('Person', $prospect);
|
|
self::assertInstanceOf('SugarBean', $prospect);
|
|
|
|
self::assertEquals('prospects', $prospect->table_name);
|
|
self::assertEquals('Prospects', $prospect->module_dir);
|
|
self::assertEquals('Prospect', $prospect->object_name);
|
|
|
|
self::assertEquals(true, $prospect->new_schema);
|
|
self::assertEquals(true, $prospect->importable);
|
|
}
|
|
|
|
public function testfill_in_additional_list_fields(): void
|
|
{
|
|
$prospect = BeanFactory::newBean('Prospects');
|
|
|
|
$prospect->salutation = 'mr';
|
|
$prospect->title = 'lastn firstn';
|
|
$prospect->first_name = 'first';
|
|
$prospect->first_name = 'last';
|
|
$prospect->email1 = 'email1@test.com';
|
|
|
|
$prospect->fill_in_additional_list_fields();
|
|
|
|
self::assertEquals('last', $prospect->full_name);
|
|
self::assertEquals('last <email1@test.com>', $prospect->email_and_name1);
|
|
}
|
|
|
|
public function testfill_in_additional_detail_fields(): void
|
|
{
|
|
$prospect = BeanFactory::newBean('Prospects');
|
|
|
|
$prospect->salutation = 'mr';
|
|
$prospect->title = 'lastn firstn';
|
|
$prospect->first_name = 'first';
|
|
$prospect->first_name = 'last';
|
|
$prospect->email1 = 'email1@test.com';
|
|
|
|
$prospect->fill_in_additional_detail_fields();
|
|
|
|
self::assertEquals('last', $prospect->full_name);
|
|
}
|
|
|
|
public function testbuild_generic_where_clause(): void
|
|
{
|
|
$prospect = BeanFactory::newBean('Prospects');
|
|
|
|
//test with empty string params
|
|
$expected = "prospects.last_name like '%' or prospects.first_name like '%' or prospects.assistant like '%'";
|
|
$actual = $prospect->build_generic_where_clause('');
|
|
self::assertSame($expected, $actual);
|
|
|
|
//test with valid string params
|
|
$expected = "prospects.last_name like '1%' or prospects.first_name like '1%' or prospects.assistant like '1%' or prospects.phone_home like '%1%' or prospects.phone_mobile like '%1%' or prospects.phone_work like '%1%' or prospects.phone_other like '%1%' or prospects.phone_fax like '%1%' or prospects.assistant_phone like '%1%'";
|
|
$actual = $prospect->build_generic_where_clause('1');
|
|
self::assertSame($expected, $actual);
|
|
}
|
|
|
|
public function testconverted_prospect(): void
|
|
{
|
|
$prospect = BeanFactory::newBean('Prospects');
|
|
|
|
// Execute the method and test that it works and doesn't throw an exception.
|
|
try {
|
|
//$prospect->converted_prospect('1', '2', '3', '4');
|
|
self::assertTrue(true);
|
|
} catch (Exception $e) {
|
|
self::fail($e->getMessage() . "\nTrace:\n" . $e->getTraceAsString());
|
|
}
|
|
|
|
self::markTestIncomplete('Multiple errors in query');
|
|
}
|
|
|
|
public function testbean_implements(): void
|
|
{
|
|
$prospect = BeanFactory::newBean('Prospects');
|
|
|
|
self::assertEquals(false, $prospect->bean_implements('')); //test with blank value
|
|
self::assertEquals(false, $prospect->bean_implements('test')); //test with invalid value
|
|
self::assertEquals(true, $prospect->bean_implements('ACL')); //test with valid value
|
|
}
|
|
|
|
public function testretrieveTargetList(): void
|
|
{
|
|
$result = BeanFactory::newBean('Prospects')->retrieveTargetList('', array('id', 'first_name'), 0, 1, 1, 0, 'Accounts');
|
|
self::assertIsArray($result);
|
|
}
|
|
|
|
public function testretrieveTarget(): void
|
|
{
|
|
$result = BeanFactory::newBean('Prospects')->retrieveTarget('');
|
|
self::assertEquals(null, $result);
|
|
}
|
|
|
|
public function testget_unlinked_email_query(): void
|
|
{
|
|
self::markTestIncomplete('environment dependency (CRLF2)');
|
|
|
|
$prospect = BeanFactory::newBean('Prospects');
|
|
|
|
$expected = "SELECT emails.id FROM emails JOIN (select DISTINCT email_id from emails_email_addr_rel eear\n\n join email_addr_bean_rel eabr on eabr.bean_id ='' and eabr.bean_module = 'Prospects' and\n eabr.email_address_id = eear.email_address_id and eabr.deleted=0\n where eear.deleted=0 and eear.email_id not in\n (select eb.email_id from emails_beans eb where eb.bean_module ='Prospects' and eb.bean_id = '')\n ) derivedemails on derivedemails.email_id = emails.id";
|
|
$actual = $prospect->get_unlinked_email_query();
|
|
self::assertSame($expected, $actual);
|
|
}
|
|
}
|