/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
tests/Integration/Database/MySql/FulltextTest.php
69 строк
2 KB
parth gohil
'whereFullText' case consistency (#53395)
05 ноя 2024, 03:45
Не верифицирован
05 ноя 2024, 03:45
eb4d629
Код
Авторство
О чём код?
<?php namespace Illuminate\Tests\Integration\Database\MySql; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Schema; use PHPUnit\Framework\Attributes\RequiresOperatingSystem; use PHPUnit\Framework\Attributes\RequiresPhpExtension; #[RequiresOperatingSystem('Linux|Darwin')] #[RequiresPhpExtension('pdo_mysql')] class FulltextTest extends MySqlTestCase { protected function afterRefreshingDatabase() { Schema::create('articles', function (Blueprint $table) { $table->id('id'); $table->string('title', 200); $table->text('body'); $table->fulltext(['title', 'body']); }); } protected function destroyDatabaseMigrations() { Schema::drop('articles'); } protected function setUp(): void { parent::setUp(); DB::table('articles')->insert([ ['title' => 'MySQL Tutorial', 'body' => 'DBMS stands for DataBase ...'], ['title' => 'How To Use MySQL Well', 'body' => 'After you went through a ...'], ['title' => 'Optimizing MySQL', 'body' => 'In this tutorial, we show ...'], ['title' => '1001 MySQL Tricks', 'body' => '1. Never run mysqld as root. 2. ...'], ['title' => 'MySQL vs. YourSQL', 'body' => 'In the following database comparison ...'], ['title' => 'MySQL Security', 'body' => 'When configured properly, MySQL ...'], ]); } /** @link https://dev.mysql.com/doc/refman/8.0/en/fulltext-natural-language.html */ public function testWhereFulltext() { $articles = DB::table('articles')->whereFullText(['title', 'body'], 'database')->get(); $this->assertCount(2, $articles); $this->assertSame('MySQL Tutorial', $articles[0]->title); $this->assertSame('MySQL vs. YourSQL', $articles[1]->title); } /** @link https://dev.mysql.com/doc/refman/8.0/en/fulltext-boolean.html */ public function testWhereFulltextWithBooleanMode() { $articles = DB::table('articles')->whereFullText(['title', 'body'], '+MySQL -YourSQL', ['mode' => 'boolean'])->get(); $this->assertCount(5, $articles); } /** @link https://dev.mysql.com/doc/refman/8.0/en/fulltext-query-expansion.html */ public function testWhereFulltextWithExpandedQuery() { $articles = DB::table('articles')->whereFullText(['title', 'body'], 'database', ['expanded' => true])->get(); $this->assertCount(6, $articles); } }