1
0
mirror of synced 2025-01-19 01:11:42 +03:00
woocommerce-module/tests/test-wc-retailcrm-daemon-collector.php

31 lines
899 B
PHP
Raw Normal View History

2019-01-16 15:33:26 +03:00
<?php
class WC_Retailcrm_Daemon_Collector_Test extends WC_Retailcrm_Test_Case_Helper
{
private $daemonCollector;
private $options;
public function setUp()
{
$this->options = array(
'daemon_collector_key' => 'RC-XXXXXXXXXX-X'
);
$this->daemonCollector = WC_Retailcrm_Daemon_Collector::getInstance($this->options);
}
public function test_initialize_daemon_collector()
{
$customerObject = WC_Helper_Customer::create_customer();
WC()->customer = $customerObject;
$js = $this->daemonCollector->initialize_daemon_collector();
$this->assertContains('customerId', $js);
$this->assertContains($this->options['daemon_collector_key'], $js);
$this->assertContains('<script', $js);
$this->assertContains('</script>', $js);
$this->assertContains('_rc(\'create\',', $js);
}
}