Server IP : 127.0.0.2 / Your IP : 3.147.77.120 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/vendor/constantcontact/constantcontact/test/Services/ |
Upload File : |
<?php use Ctct\Components\ResultSet; use Ctct\Components\Contacts\Contact; use Ctct\Components\Contacts\ContactList; use GuzzleHttp\Client; use GuzzleHttp\Subscriber\Mock; use GuzzleHttp\Stream\Stream; use GuzzleHttp\Message\Response; class ListServiceUnitTest extends PHPUnit_Framework_TestCase { /** * @var Client */ private static $client; public static function setUpBeforeClass() { self::$client = new Client(); $getListsStream = Stream::factory(JsonLoader::getListsJson()); $getListStream = Stream::factory(JsonLoader::getListJson()); $getContactsStream = Stream::factory(JsonLoader::getContactsJson()); $mock = new Mock([ new Response(200, array(), $getListsStream), new Response(200, array(), $getListStream), new Response(201, array(), $getListStream), new Response(200, array(), $getListStream), new Response(200, array(), $getContactsStream) ]); self::$client->getEmitter()->attach($mock); } public function testGetLists() { $response = self::$client->get('/'); $lists = array(); foreach ($response->json() as $list) { $lists[] = ContactList::create($list); } $this->assertInstanceOf('Ctct\Components\Contacts\ContactList', $lists[0]); $this->assertEquals(1, $lists[0]->id); $this->assertEquals("General Interest", $lists[0]->name); $this->assertEquals("ACTIVE", $lists[0]->status); $this->assertEquals(17, $lists[0]->contact_count); $this->assertEquals(3, $lists[1]->id); $this->assertEquals("mod_Test List 1", $lists[1]->name); $this->assertEquals("HIDDEN", $lists[1]->status); $this->assertEquals(18, $lists[1]->contact_count); } public function testGetList() { $response = self::$client->get('/'); $list = ContactList::create($response->json()); $this->assertInstanceOf('Ctct\Components\Contacts\ContactList', $list); $this->assertEquals(6, $list->id); $this->assertEquals("Test List 4", $list->name); $this->assertEquals("HIDDEN", $list->status); $this->assertEquals(19, $list->contact_count); } public function testAddList() { $response = self::$client->post('/'); $list = ContactList::create($response->json()); $this->assertInstanceOf('Ctct\Components\Contacts\ContactList', $list); $this->assertEquals(6, $list->id); $this->assertEquals("Test List 4", $list->name); $this->assertEquals("HIDDEN", $list->status); $this->assertEquals(19, $list->contact_count); } public function testUpdateList() { $response = self::$client->put('/'); $list = ContactList::create($response->json()); $this->assertInstanceOf('Ctct\Components\Contacts\ContactList', $list); $this->assertEquals(6, $list->id); $this->assertEquals("Test List 4", $list->name); $this->assertEquals("HIDDEN", $list->status); $this->assertEquals(19, $list->contact_count); } public function testGetContactsFromList() { $response = self::$client->get('/')->json(); $result = new ResultSet($response['results'], $response['meta']); $this->assertInstanceOf('Ctct\Components\ResultSet', $result); $contact = Contact::create($result->results[1]); $this->assertInstanceOf('Ctct\Components\Contacts\Contact', $contact); $this->assertEquals(231, $contact->id); $this->assertEquals("ACTIVE", $contact->status); $this->assertEquals("", $contact->fax); $this->assertEquals("", $contact->prefix_name); $this->assertEquals("Jimmy", $contact->first_name); $this->assertEquals("Roving", $contact->last_name); $this->assertEquals("Bear Tamer", $contact->job_title); $this->assertEquals("Animal Trainer Pro", $contact->company_name); $this->assertEquals("details", $contact->source_details); $this->assertEquals(false, $contact->confirmed); $this->assertEquals("", $contact->source); // custom fields $this->assertInstanceOf('Ctct\Components\Contacts\CustomField', $contact->custom_fields[0]); $this->assertEquals("CustomField1", $contact->custom_fields[0]->name); $this->assertEquals("1", $contact->custom_fields[0]->value); //addresses $this->assertInstanceOf('Ctct\Components\Contacts\Address', $contact->addresses[0]); $this->assertEquals("Suite 101", $contact->addresses[0]->line1); $this->assertEquals("line2", $contact->addresses[0]->line2); $this->assertEquals("line3", $contact->addresses[0]->line3); $this->assertEquals("Brookfield", $contact->addresses[0]->city); $this->assertEquals("PERSONAL", $contact->addresses[0]->address_type); $this->assertEquals("WI", $contact->addresses[0]->state_code); $this->assertEquals("us", $contact->addresses[0]->country_code); $this->assertEquals("53027", $contact->addresses[0]->postal_code); $this->assertEquals("", $contact->addresses[0]->sub_postal_code); //notes $this->assertEquals(0, count($contact->notes)); //lists $this->assertInstanceOf('Ctct\Components\Contacts\ContactList', $contact->lists[0]); $this->assertEquals(1, $contact->lists[0]->id); $this->assertEquals("ACTIVE", $contact->lists[0]->status); // EmailAddress $this->assertInstanceOf('Ctct\Components\Contacts\EmailAddress', $contact->email_addresses[0]); $this->assertEquals("ACTIVE", $contact->email_addresses[0]->status); $this->assertEquals("NO_CONFIRMATION_REQUIRED", $contact->email_addresses[0]->confirm_status); $this->assertEquals("ACTION_BY_OWNER", $contact->email_addresses[0]->opt_in_source); $this->assertEquals("2012-06-22T10:29:09.976Z", $contact->email_addresses[0]->opt_in_date); $this->assertEquals("", $contact->email_addresses[0]->opt_out_date); $this->assertEquals("anothertest@roving.com", $contact->email_addresses[0]->email_address); } }