diff --git a/tests/integration/api/Controller/ListDiscussionsControllerTest.php b/tests/integration/api/Controller/ListDiscussionsControllerTest.php
index 24f476038..c9d791e74 100644
--- a/tests/integration/api/Controller/ListDiscussionsControllerTest.php
+++ b/tests/integration/api/Controller/ListDiscussionsControllerTest.php
@@ -72,4 +72,30 @@ class ListDiscussionsControllerTest extends ApiControllerTestCase
$this->assertEquals(200, $response->getStatusCode());
}
+
+ /**
+ * @test
+ */
+ public function can_search_for_word_in_title_and_post()
+ {
+ $this->database()->table('posts')->insert([
+ ['id' => 2, 'discussion_id' => 2, 'created_at' => Carbon::now()->toDateTimeString(), 'user_id' => 2, 'type' => 'comment', 'content' => 'not in text
'],
+ ['id' => 3, 'discussion_id' => 3, 'created_at' => Carbon::now()->toDateTimeString(), 'user_id' => 2, 'type' => 'comment', 'content' => 'lightsail in text
'],
+ ]);
+
+ $this->database()->table('discussions')->insert([
+ ['id' => 2, 'title' => 'lightsail in title', 'created_at' => Carbon::now()->toDateTimeString(), 'user_id' => 2, 'first_post_id' => 2, 'comment_count' => 1],
+ ['id' => 3, 'title' => 'not in title', 'created_at' => Carbon::now()->toDateTimeString(), 'user_id' => 2, 'first_post_id' => 3, 'comment_count' => 1],
+ ]);
+
+ $response = $this->callWith([], [
+ 'filter' => ['q' => 'lightsail'],
+ 'include' => 'mostRelevantPost'
+ ]);
+ $data = json_decode($response->getBody()->getContents(), true);
+ $ids = array_map(function ($row) { return $row['id']; }, $data['data']);
+
+ // Order-independent comparison
+ $this->assertEquals(['2', '3'], $ids, 'IDs do not match', 0.0, 10, true);
+ }
}