Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/PHPUnit/Integration/SessionTest.php')
-rw-r--r--tests/PHPUnit/Integration/SessionTest.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/PHPUnit/Integration/SessionTest.php b/tests/PHPUnit/Integration/SessionTest.php
new file mode 100644
index 0000000000..8c6eade11c
--- /dev/null
+++ b/tests/PHPUnit/Integration/SessionTest.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link https://matomo.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+
+namespace Piwik\Tests\Integration;
+
+use Piwik\Http;
+use Piwik\Piwik;
+use Piwik\Session;
+use Piwik\Tests\Framework\Fixture;
+
+/**
+ * @group Core
+ * @group Session
+ * @group SessionTest
+ */
+class SessionTest extends \PHPUnit_Framework_TestCase
+{
+ public function test_session_should_not_be_started_if_it_was_already_started()
+ {
+ $url = Fixture::getRootUrl() . '/tests/resources/sessionStarter.php';
+ $result = Http::sendHttpRequest($url, 5);
+ $this->assertSame('ok', trim($result));
+ }
+
+}