#integrationtests — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #integrationtests, aggregated by home.social.
-
#UnitTests? #IntegrationTests? #EndToEndTests? How do you test your #PWA and #backend? Join us at #GLUG, the Greater #Lansing User Group for "Testing Each Part of a TypeScript app" happening in #Lansing starting soon. https://www.meetup.com/glugnet/events/308564229 slides: https://robrich.org/slides/web-test-all-the-things/ code: https://github.com/robrich/web-test-all-the-things
-
SaturdayMP Show 89: PostCast (Part 10 – Integration Tests and Keyring Saving)
Omar is back! We really got into the zone and recorded our longest PostCast video yet. Might be the longest SaturdayMP Show video yet. We don't edit out mistakes, so watch along as we learn in real time:
- how to write integration tests in Go (build tags vs. -short flag)
- how to create test setup/teardown in Go
- that the go-keyring library has mocking built in so we can simplify our tests
- how to connect our keyring logic to the Fyne GUIDo you like or dislike the long live coding sessions? Should we try coding live instead of mostly live? Let us know in a constructive and polite manor.
*PostCast is just a place holder name and might change. The goofy PostCast placeholder image was generated by ChatGPT and will likely change.
zalando/go-keyring:
https://github.com/zalando/go-keyringBuild tags vs. Short:
https://stackoverflow.com/questions/25965584/separating-unit-tests-and-integration-tests-in-goFyne:
https://fyne.io/Omar:
https://www.ashour.ca/SaturdayMP:
https://saturdaymp.com/PostCast Playlist:
https://www.youtube.com/playlist?list=PLYPcrKbLqwuvKQ97klk3bzyUPI6j154WCHave a question you want answered in a future video? A challenging or interesting problem you want to see solved? Constructive feedback? Then comment, DM me, or send an email to [email protected].
Found this video useful? Then help others find it by liking, subscribing, sharing, and/or sponsoring:
https://github.com/sponsors/saturdaympThanks for watching!
#saturdaymp #saturdaympshow #postcast #fyne #golang #keyring #integrationtests
-
Ever get confused about what exactly is meant when people talk about #UnitTests, #IntegrationTests, #RegressionTests, and #SmokeTests? I wrote a little something about them to, hopefully, explain the differences and overlap: https://www.cassandrahl.com/blog/on-unit-integration-regression-tests-and-terminology/
-
Ever get confused about what exactly is meant when people talk about #UnitTests, #IntegrationTests, #RegressionTests, and #SmokeTests? I wrote a little something about them to, hopefully, explain the differences and overlap: https://www.cassandrahl.com/blog/on-unit-integration-regression-tests-and-terminology/
-
Ever get confused about what exactly is meant when people talk about #UnitTests, #IntegrationTests, #RegressionTests, and #SmokeTests? I wrote a little something about them to, hopefully, explain the differences and overlap: https://www.cassandrahl.com/blog/on-unit-integration-regression-tests-and-terminology/
-
Ever get confused about what exactly is meant when people talk about #UnitTests, #IntegrationTests, #RegressionTests, and #SmokeTests? I wrote a little something about them to, hopefully, explain the differences and overlap: https://www.cassandrahl.com/blog/on-unit-integration-regression-tests-and-terminology/
-
Ever get confused about what exactly is meant when people talk about #UnitTests, #IntegrationTests, #RegressionTests, and #SmokeTests? I wrote a little something about them to, hopefully, explain the differences and overlap: https://www.cassandrahl.com/blog/on-unit-integration-regression-tests-and-terminology/
-
Testing is a crucial activity to guarantee the software keeps working after fixing a bug or adding a new feature.
Read more 👉 https://lttr.ai/AQ1jo
#IntegrationTesting #IntegrationTests #Microservices #UnitTests #MicroserviceArchitecture #PokémonMicroserviceSApi
-
Testing is a crucial activity to guarantee the software keeps working after fixing a bug or adding a new feature.
Read more 👉 https://lttr.ai/AQ1jo
#IntegrationTesting #IntegrationTests #Microservices #UnitTests #MicroserviceArchitecture #PokémonMicroserviceSApi
-
Test Pyramid - Martin Fowler
Read more 👉 https://lttr.ai/AYtlW
#IntegrationTesting #IntegrationTests #Microservices #UnitTests #MicroserviceArchitecture #PokémonMicroserviceSApi
-
Test Pyramid - Martin Fowler
Read more 👉 https://lttr.ai/AYtlW
#IntegrationTesting #IntegrationTests #Microservices #UnitTests #MicroserviceArchitecture #PokémonMicroserviceSApi
-
Engineering manager: I want #integrationtests to run on the app deployed on #Cloud infra for each #GitHub PR ✅
Me, thinking it's a no-brainer: sure thing! 🤦♂️
Me, after 85 runs: I have content for my next blog post/talk 😅
-
https://dev.to/slsbytheodo/blazing-fast-ci-for-serverless-integration-tests-3n4f - what if we could have multiple warm #cloud environments and "check-out" an environment for the #IntegrationTests? Then we don't need to start from scratch. We can evolve the environment for the #tests. Nice thought experiment https://www.linkedin.com/in/corentin-doue.
-
Testing is a crucial activity to guarantee the software keeps working after fixing a bug or adding a new feature.
Read more 👉 https://lttr.ai/ATvU0
#IntegrationTesting #IntegrationTests #Microservices #UnitTests #MicroserviceArchitecture #PokémonMicroserviceSApi
-
Testing is a crucial activity to guarantee the software keeps working after fixing a bug or adding a new feature.
Read more 👉 https://lttr.ai/ATvU0
#IntegrationTesting #IntegrationTests #Microservices #UnitTests #MicroserviceArchitecture #PokémonMicroserviceSApi
-
The Integration Test aims to verify the interaction between different components, modules, or systems to ensure they function correctly together as a unified whole.
Read more 👉 https://lttr.ai/AWRhG
#IntegrationTesting #IntegrationTests #Microservices #UnitTests #MicroserviceArchitecture #PokémonMicroserviceSApi
-
How do golang folks do integration tests for their apps?
I am not sure writing loads of shell scripts is the best approach
#golang #integrationTests -
My team currently has #IntegrationTests that spin up the service under test and its database, inject some state, run a bunch of curl scripts to poke the APIs, and check the responses. Today it's a pile of bash code.
What I'd like is a test framework that lets me easily:
* run independent tests in parallel
* start using Postman collections for the API calls
* capture artifacts like log files and API responses after failing testsAny recommendations? Most places I've worked have either (a) written a bunch of custom framework code, or (b) bashed their favored unit test framework into a rough fit.
There are a lot of solutions out there that look like (b) -- for example testcontainers. I've also gotten some suggestions to use a workflow platform like airflow and I'm worried that road leads to (a).
Nobody inside Postman has admitted to any test framework integrations yet 🙂, though there are plenty of resources about using a Postman collection as a CI step.
-
Some thoughts triggered by https://martinfowler.com/articles/programs-in-product-mode.html:
- "product-mode company" is clearer than "tech company"
- #Product vs #Project is a "pick your poison" issue
- The largest risk to any program is probably integration
- Anticipate #dependencies by studying historical #blockers.
- #IntegrationTests and milestones are more trustworthy than status reports.
- What is an effective virtual equivalent to a physical #ProgramWall? Honestly, I don't know. -
a (6 min) video for using Selenium x Python for Headless Chrome Automation
https://youtu.be/yEJjDuyMuJo?si=ocoFNaK6TR--Vogk
#selenium #browser #testing #testingtools #IntegrationTests #python #chrome
-
I'm excited to present "Scaling the #Testing #Pyramid in #TypeScript at #UtahJS. I'll demo #UnitTests, #IntegrationTests, #Mocks, #EndToEndTests. Join us #InPerson! https://www.meetup.com/utahjs/events/297934075/, slides: https://robrich.org/slides/web-test-all-the-things/, code: https://github.com/robrich/web-test-all-the-things
-
Some thoughts triggered by https://martinfowler.com/articles/programs-in-product-mode.html:
- "product-mode company" is clearer than "tech company"
- #Product vs #Project is a "pick your poison" issue
- The largest risk to any program is probably integration
- Anticipate #dependencies by studying historical #blockers.
- #IntegrationTests and milestones are more trustworthy than status reports.
- What is an effective virtual equivalent to a physical #ProgramWall? Honestly, I don't know. -
Some thoughts triggered by https://martinfowler.com/articles/programs-in-product-mode.html:
- "product-mode company" is clearer than "tech company"
- #Product vs #Project is a "pick your poison" issue
- The largest risk to any program is probably integration
- Anticipate #dependencies by studying historical #blockers.
- #IntegrationTests and milestones are more trustworthy than status reports.
- What is an effective virtual equivalent to a physical #ProgramWall? Honestly, I don't know. -
Some thoughts triggered by https://martinfowler.com/articles/programs-in-product-mode.html:
- "product-mode company" is clearer than "tech company"
- #Product vs #Project is a "pick your poison" issue
- The largest risk to any program is probably integration
- Anticipate #dependencies by studying historical #blockers.
- #IntegrationTests and milestones are more trustworthy than status reports.
- What is an effective virtual equivalent to a physical #ProgramWall? Honestly, I don't know. -
Some thoughts triggered by https://martinfowler.com/articles/programs-in-product-mode.html:
- "product-mode company" is clearer than "tech company"
- #Product vs #Project is a "pick your poison" issue
- The largest risk to any program is probably integration
- Anticipate #dependencies by studying historical #blockers.
- #IntegrationTests and milestones are more trustworthy than status reports.
- What is an effective virtual equivalent to a physical #ProgramWall? Honestly, I don't know. -
If you code in OOP with the concept of SoC and SOLID you have the possibility to write modern modular classes.
Take the focus on the testability of the code you write and it will show you the way which you can/must go.
1. #unittest
2. #functionaltests
3. #integrationtests
4. #apitests
5. #acceptancetestsFrom top to bottom
From many to few tests -
#Development #Reviews
Long live the Test Pyramid · Does the testing model still fit into today’s development landscape? https://ilo.im/154yjk_____
#WebDev #Testing #TestingStrategy #TestingModel #TestPyramid #UnitTests #IntegrationTests -
https://medium.com/@zelldon91/advanced-test-practices-for-helm-charts-587caeeb4cb - #Helm testing methodology including #UnitTests and #IntegrationTests with #TerraTest. Golden results file is brilliant https://github.com/Zelldon.
-
I'm excited to do "Scaling the #Testing Pyramid in #TypeScript with #SandSMedia today. #UnitTests, #IntegrationTests, #ComponentTests, #e2eTests, demos galore. Join us at https://devm.io/scaling-the-testing-pyramid-in-typescript/, slides: https://robrich.org/slides/web-test-all-the-things/, code: https://github.com/robrich/web-test-all-the-things
-
How do you test your #WebApp's functions, #components, #APIs, #mock dependencies, and build #IntegrationTests in #TypeScript? Join us at #SoftwareCraftsmanship #Luxembourg #online at https://www.meetup.com/software-craft-luxembourg/events/291725432/, slides: https://robrich.org/slides/web-test-all-the-things/, code: https://github.com/robrich/web-test-all-the-things.
-
Cursed CI setup in ongoing:
- Flutter bundled into headless sway dockerimage
- UNIX socket communication for CLI execution
- VNC server for recording
- still permission issues in volumes (easy to solve)#FluffyChat is close to getting #Linux #IntegrationTests !
-
#FluffyChat is now given a proper #IntegrationTests setup via MR https://gitlab.com/famedly/fluffychat/-/merge_requests/1062.
The changes include:
- testing full features against all homeservers (#Synapse, #Conduit & #Dendrite)
- normalize the app's behavior independent of platform (currently Android FLOSS, Android proprietary and Linux supported)
- set of built-in helpers in order to simplify user login, logout or bootstrap processes in all future test casesPlatform-specific workarounds just took around 30 h of work.
-
If your #IntegrationTests fail, patch your dependencies so that your integration tests pass. #XML #Dart
-
Atíla Neves ponders about
#UnitTesting. The #D programming language is too closely coupled to #libclang, and Neves is working on separating it. In the process Neves found the unit tests to be #integrationTests rather than individual tests. Neves held many tech talks telling us to avoid that. So Neves feels ashamed, and will be correcting the tests.https://atilanevesoncode.wordpress.com/2018/11/20/unit-testing-do-as-i-say-dont-do-as-i-do/
-
I'm excited to present "Scaling the #Testing #Pyramid in #TypeScript at #UtahJS. I'll demo #UnitTests, #IntegrationTests, #Mocks, #EndToEndTests. Join us #InPerson! https://www.meetup.com/utahjs/events/297934075/, slides: https://robrich.org/slides/web-test-all-the-things/, code: https://github.com/robrich/web-test-all-the-things
-
I'm excited to present "Scaling the #Testing #Pyramid in #TypeScript at #UtahJS. I'll demo #UnitTests, #IntegrationTests, #Mocks, #EndToEndTests. Join us #InPerson! https://www.meetup.com/utahjs/events/297934075/, slides: https://robrich.org/slides/web-test-all-the-things/, code: https://github.com/robrich/web-test-all-the-things
-
I'm excited to present "Scaling the #Testing #Pyramid in #TypeScript at #UtahJS. I'll demo #UnitTests, #IntegrationTests, #Mocks, #EndToEndTests. Join us #InPerson! https://www.meetup.com/utahjs/events/297934075/, slides: https://robrich.org/slides/web-test-all-the-things/, code: https://github.com/robrich/web-test-all-the-things
-
I'm excited to present "Scaling the #Testing #Pyramid in #TypeScript at #UtahJS. I'll demo #UnitTests, #IntegrationTests, #Mocks, #EndToEndTests. Join us #InPerson! https://www.meetup.com/utahjs/events/297934075/, slides: https://robrich.org/slides/web-test-all-the-things/, code: https://github.com/robrich/web-test-all-the-things
-
a (6 min) video for using Selenium x Python for Headless Chrome Automation
https://youtu.be/yEJjDuyMuJo?si=ocoFNaK6TR--Vogk
#selenium #browser #testing #testingtools #IntegrationTests #python #chrome
-
a (6 min) video for using Selenium x Python for Headless Chrome Automation
https://youtu.be/yEJjDuyMuJo?si=ocoFNaK6TR--Vogk
#selenium #browser #testing #testingtools #IntegrationTests #python #chrome
-
a (6 min) video for using Selenium x Python for Headless Chrome Automation
https://youtu.be/yEJjDuyMuJo?si=ocoFNaK6TR--Vogk
#selenium #browser #testing #testingtools #IntegrationTests #python #chrome
-
a (6 min) video for using Selenium x Python for Headless Chrome Automation
https://youtu.be/yEJjDuyMuJo?si=ocoFNaK6TR--Vogk
#selenium #browser #testing #testingtools #IntegrationTests #python #chrome
-
If you code in OOP with the concept of SoC and SOLID you have the possibility to write modern modular classes.
Take the focus on the testability of the code you write and it will show you the way which you can/must go.
1. #unittest
2. #functionaltests
3. #integrationtests
4. #apitests
5. #acceptancetestsFrom top to bottom
From many to few tests -
If you code in OOP with the concept of SoC and SOLID you have the possibility to write modern modular classes.
Take the focus on the testability of the code you write and it will show you the way which you can/must go.
1. #unittest
2. #functionaltests
3. #integrationtests
4. #apitests
5. #acceptancetestsFrom top to bottom
From many to few tests -
If you code in OOP with the concept of SoC and SOLID you have the possibility to write modern modular classes.
Take the focus on the testability of the code you write and it will show you the way which you can/must go.
1. #unittest
2. #functionaltests
3. #integrationtests
4. #apitests
5. #acceptancetestsFrom top to bottom
From many to few tests