PHP 단위 테스트 FAQ: 외부 종속성 테스트: 모커리(Mockery)와 같은 모킹 프레임워크를 사용하여 가짜 종속성을 생성하고 상호 작용을 확인합니다. 프라이빗 멤버 테스트: ReflectionMethod와 같은 리플렉션 API를 사용하여 프라이빗 멤버에 액세스하거나 @protected와 같은 테스트 가시성 수정자를 사용합니다. 데이터베이스 상호 작용 테스트: DbUnit과 같은 데이터베이스 테스트 프레임워크를 사용하여 데이터베이스 상태를 설정하고 확인합니다. 외부 API/웹 서비스 테스트: HTTP 클라이언트 라이브러리를 사용하여 테스트 환경에서 로컬 또는 스텁 서버를 사용하여 상호 작용을 시뮬레이션합니다.
PHP 단위 테스트에 대해 자주 묻는 질문
질문 1: 외부 종속성이 있는 코드를 단위 테스트하는 방법은 무엇입니까?
해결책: 가짜 종속성 개체를 만들고 해당 상호 작용에 대해 주장할 수 있는 PHPUnit의 Mockery 또는 Prophecy와 같은 모의 프레임워크를 사용하세요.
use Prophecy\Prophet; class UserRepoTest extends \PHPUnit\Framework\TestCase { public function testFetchUser(): void { $prophet = new Prophet(); $cache = $prophet->prophesize(Cache::class); $userRepo = new UserRepo($cache->reveal()); $actualUser = $userRepo->fetchUser(1); $cache->get(1)->shouldHaveBeenCalled(); $this->assertEquals($expectedUser, $actualUser); } }
질문 2: 비공개 메서드나 속성을 테스트하는 방법은 무엇인가요?
해결책: 비공개 멤버에 액세스할 수 있는 리플렉션 API(예: ReflectionClass
및 ReflectionMethod
)를 사용하세요. 그러나 테스트를 유지하기 어렵게 만들 수 있습니다. ReflectionClass
和 ReflectionMethod
),允许你访问私有成员。然而,它可能会使测试难以维护。
另一种解决方案是使用测试特定的可见性修饰符,例如 PHPUnit 的 @protected
@protected
와 같은 테스트별 가시성 수정자를 사용하는 것입니다. class UserTest extends \PHPUnit\Framework\TestCase { public function testPasswordIsSet(): void { $user = new User(); $reflector = new ReflectionClass($user); $property = $reflector->getProperty('password'); $property->setAccessible(true); $property->setValue($user, 'secret'); $this->assertEquals('secret', $user->getPassword()); } }
해결책:
데이터베이스 상태를 설정하고 확인할 수 있는 PHPUnit의 DbUnit 또는 Doctrine DBAL Assertions와 같은 데이터베이스 테스트 프레임워크를 사용하세요.use PHPUnit\DbUnit\TestCase; class PostRepoTest extends TestCase { protected function getConnection(): Connection { return $this->createDefaultDBConnection(); } public function testCreatePost(): void { $dataset = $this->createXMLDataSet(__DIR__ . '/initial-dataset.xml'); $this->getDatabaseTester()->setDataSet($dataset); $this->getDatabaseTester()->onSetUp(); $post = new Post(['title' => 'My First Post']); $postRepo->persist($post); $postRepo->flush(); $this->assertTrue($this->getConnection()->getRowCount('posts') === 1); } }
해결책:
HTTP 클라이언트 라이브러리를 사용하여 외부 서비스와의 상호 작용을 시뮬레이션합니다. 테스트 환경에서는 로컬 또는 스텁 서버를 사용할 수 있습니다. 🎜아아아아위 내용은 PHP 단위 테스트 실습의 일반적인 문제 및 해결 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!