Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Module Symfony Laravel Package

codeception/module-symfony

Symfony module for Codeception that integrates the framework’s kernel, container, and HTTP client for functional/acceptance testing. Boot the app, make requests, assert responses, and access services to test controllers and app behavior with minimal setup.

View on GitHub
Deep Wiki
Context7
3.6.0

What's Changed

New Contributors

Full Changelog: https://github.com/Codeception/module-symfony/compare/3.5.1...3.6.0

3.5.1

What's Changed

Support Symfony 7.2 (https://github.com/Codeception/module-symfony/pull/203). Added Symfony Translation assertions (https://github.com/Codeception/module-symfony/pull/205):

  • dontSeeFallbackTranslations
  • dontSeeMissingTranslations
  • grabDefinedTranslationsCount
  • seeAllTranslationsDefined
  • seeDefaultLocaleIs
  • seeFallbackLocalesAre
  • seeFallbackTranslationsCountLessThan
  • seeMissingTranslationsCountLessThan

Added Symfony Logger assertion (dontSeeDeprecations) (https://github.com/Codeception/module-symfony/pull/206).

Full Changelog: https://github.com/Codeception/module-symfony/compare/3.5.0...3.5.1

3.5.0

🎉 Release 3.5.0

🆕 New Assertions

you can now use all Symfony assertions directly in Codeception with the $I-> syntax.

  • Browser assertions:
assertBrowserCookieValueSame
assertBrowserHasCookie
assertBrowserNotHasCookie
assertRequestAttributeValueSame
assertResponseCookieValueSame
assertResponseFormatSame
assertResponseHasCookie
assertResponseHasHeader
assertResponseHeaderNotSame
assertResponseHeaderSame
assertResponseIsSuccessful
assertResponseIsUnprocessable
assertResponseNotHasCookie
assertResponseNotHasHeader
assertResponseRedirects
assertResponseStatusCodeSame
  • DomCrawler assertions:
assertCheckboxChecked
assertCheckboxNotChecked
assertInputValueNotSame
assertInputValueSame
assertPageTitleContains
assertPageTitleSame
assertSelectorExists
assertSelectorNotExists
assertSelectorTextContains
assertSelectorTextNotContains
assertSelectorTextSame
  • HttpClient assertions:
assertHttpClientRequest
assertHttpClientRequestCount
assertNotHttpClientRequest
  • Mailer assertions:
assertEmailCount
assertEmailIsQueued
assertEmailIsNotQueued
assertQueuedEmailCount
  • Form assertions:
assertFormValue
assertNoFormValue

🔧 Other Changes

🚀 Enjoy the new features and keep building better tests!

New Contributors

Full Changelog: https://github.com/Codeception/module-symfony/compare/3.4.0...3.5.0

3.4.0

What's Changed

New Contributors

Full Changelog: https://github.com/Codeception/module-symfony/compare/3.3.2...3.4.0

3.3.2

What's Changed

Full Changelog: https://github.com/Codeception/module-symfony/compare/3.3.1...3.3.2

3.3.0

What's Changed

Full Changelog: https://github.com/Codeception/module-symfony/compare/3.2.0...3.3.0

3.2.0
3.1.1
  • Allow installation of lib-innerbrowser v4 to support PHPUnit 10.
3.0.0
  • Support for Codeception 5
2.1.1
2.1.0

What's Changed

By @TavoNiievez:

By @ThomasLandauer:

Full Changelog: https://github.com/Codeception/module-symfony/compare/2.0.5...2.1.0

2.0.5

Added assertions for Symfony Mime component (#139):

  • assertEmailAddressContains
  • assertEmailAttachmentCount
  • assertEmailHasHeader
  • assertEmailHeaderNotSame
  • assertEmailHeaderSame
  • assertEmailHtmlBodyContains
  • assertEmailHtmlBodyNotContains
  • assertEmailNotHasHeader
  • assertEmailTextBodyContains
  • assertEmailTextBodyNotContains
2.0.4
  • New method: $I->goToLogoutPath();

  • $I->logout(); is now an alias for $I->logoutProgrammatically();

  • Added changelog link to readme.md (#136) by @Arhell

2.0.3
  • Added Symfony 5.3 compatibility (#133).
  • Added new method: $I->seeRequestTimeIsLessThan() (#132).
2.0.2

Logical changes by @mrsombre :

  • Fix Doctrine Connection service alias (#129)

Documentation changes by @ThomasLandauer :

  • submitSymfonyForm(): Mentioning name attribute (#128)
2.0.1

Minor changes in documentation by @ThomasLandauer :

  • Added info from the 'Codeception for Symfony' page (#98)
  • Explaining the stopFollowingRedirects() restriction for email (#118)
  • Added 'See also' in related email functions (#122)
  • Standardize "[@example](https://github.com/example).com" as domain in documentation (#124)
  • Mentioning Symfony Mailer requirement (#126)
  • Changing Fail message for Symfony Mailer (#127)
2.0.0

If you are already using Symfony 4.4 or higher it should not be necessary to make changes to your tests to update!

1.6.0
  • New methods by @TavoNiievez:

    • dontSeeEventTriggered
    • seeFormErrorMessages
    • seeUserHasRoles
  • Remembered authentication methods now also verify the Cookie generated (#81)

  • Fixed time metric when running test with --debug (#77)

If you're interested in contributing to this module and didn't know where to start, a contribution guide is now available, thanks to @ThomasLandauer and @TavoNiievez (#79).

BC: Removed support for PHP 7.1 and PHP 7.2.

Minor changes: (#65) (#78)

1.5.0
  • New method by @ThomasLandauer:

    • dontSeeInSession
  • New methods by @TavoNiievez:

    • dontSeeRememberedAuthentication
    • grabNumRecords
    • seeEventTriggered
    • seeRememberedAuthentication
    • seeSessionHasValues
    • persistPermanentService
  • Now you can run test for all the methods of this module in https://github.com/Codeception/symfony-module-tests .

  • BC: Remove PHP 7.0 support (#69), code standards updated to PHP 7.1+ (#75)

  • BC: Removed parameter flags in seeAuthentication, dontSeeAuthentication and persistService, use seeRememberedAuthentication, dontSeeRememberedAuthentication and persistPermanentService instead.

Minor logical change in #74.

1.4.2

Minor non-logical changes in #57 and #62.

1.4.1
1.4.0
  • New methods by @TavoNiievez:

    • seeFormErrorMessage (#50)
    • dontSeeFormErrors function (#49)
    • seeFormHasErrors function (#48)
  • Minor logic fixes (#51), (#47), (#44), (#41) and (#56).

1.3.0
  • New methods by @TavoNiievez:

    • grabRepository (#27)
    • seeUserPasswordDoesNotNeedRehash (#29)
    • grabParameter (#30)
    • submitSymfonyForm (#32)
    • seePageIsAvailable (#33)
    • seePageRedirectsTo (#33)
  • Supports vlucas/phpdotenv v5 (#28)

  • Minor logic fixes (#35), (#36), (#37) and (#38)

  • Improved documentation of the 'Parts' feature by @ThomasLandauer (#40)

  • BC: Removed support for php 5.6 and Symfony 2.8 (#39)

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
jayeshmepani/jpl-moshier-ephemeris-php
elnasnato/laraliveui
labrodev/rest-sdk
sampaui/sampaui
babelqueue/php-sdk
facebook/capi-param-builder-php
babelqueue/symfony
hamzi/corewatch
minionfactory/raw-hydrator
hexters/coinpayment
rjcodes/rjcms
act-training/laravel-permissions-manager
alimarchal/laravel-chart-of-accounts
babenkoivan/elastic-scout-driver
mkwebdesign/filament-watchdog-v5
renatomarinho/laravel-page-speed
zedmagdy/filament-business-hours
renatovdemoura/blade-elements-ui
devgeek/beacon-admin
benjamin-rqt/data-watcher-bundle