$str_tags='';\r
handle_tag($this->a, $text, $inform, $str_tags, 11, $tags[0]);\r
\r
- $this->assertEquals("cid:15", $inform);
- $this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url]", $str_tags);
- $this->assertEquals("hi @[url=http://justatest.de]Mike Lastname[/url].because", $text);\r
+ // (mike) - This is a tricky case.
+ // we support mentions as in @mike@example.com - which contains a period.
+ // This shouldn't match anything unless you have a contact named "Mike.because".
+ // We may need another test for "@Mike. because" - which should return the contact
+ // as we ignore trailing periods in tags.
+
+// $this->assertEquals("cid:15", $inform);
+// $this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url]", $str_tags);
+// $this->assertEquals("hi @[url=http://justatest.de]Mike Lastname[/url].because", $text);\r
+
+ $this->assertEquals("", $inform);
+ $this->assertEquals("", $str_tags);
+
}
/**\r
$this->assertEquals("Test with @[url=http://justatest.de]Mike Lastname[/url] id tag", $text);\r
$this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url]", $str_tags);\r
- $this->assertEquals("cid:15", $inform);
+ // this test may produce two cid:15 entries - which is OK because duplicates are pruned before delivery
+ $this->assertTrue(strstr($inform,"cid:15"));
}
/**