Integration of Postman tests into Jenkins
Integration of Postman tests into CI flow (using Jenkins & newman) Postman tests in jenkins from Alexander Galkin
Few notes from one tech guy…
Integration of Postman tests into CI flow (using Jenkins & newman) Postman tests in jenkins from Alexander Galkin
Here is the guide to start your journey to load testing using Apache JMeter. QA. Load Testing from Alexander Galkin
This short post is for people who need to import many posts to WordPress blog via CSV and set expiration date for them. These two goals can be achieved separately using multiple plugins however...
Found awesome tool for framing mockups. Surprise here is that is free. URL: http://smartmockups.com/ What you can do using this service? Add frames to your mockup or screenshot of your website or mobile application Share...
Running memcached instance using Docker is pretty straightforward: Pull image from Docker hub
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
bash-3.2$ docker pull memcached latest: Pulling from memcached 30e38a0d02bb: Pull complete d0a946e5b34b: Pull complete 0e22c7635271: Pull complete cbc89630facd: Pull complete 31f79787e46c: Pull complete 353189480dc4: Pull complete 6708d05ca977: Pull complete 3a51cc675c6c: Already exists 64e5325c0d9d: Already exists bf84c1d84a8f: Already exists memcached:latest: The image you are pulling has been verified. Important: image verification is a tech preview feature and should not be relied on to provide security. Digest: sha256:7e492627975a37c89ffdce040233491bb8c92cc20e33bbe29064d3ef61ce9290 Status: Downloaded newer image for memcached:latest |
Run container:
1 2 |
bash-3.2$ docker run -d -p 11211:11211 memcached 2dda32455fd79cb1f7e21c901263d66b44313cf7206d3587fff225d9eb99acf8 |
Verify that container is listed as running by executing the following command:
1 2 3 |
bash-3.2$ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 2dda32455fd7 memcached:latest "memcached" 6 seconds ago Up 5 seconds 0.0.0.0:11211->11211/tcp insane_cori |
I have found few interesting videos lessons published by BlazeMeter (https://blazemeter.com/) which are worth of watching them when you want to start working with JMeter. Lesson 1. Writing your first script Lesson 2. Recording your...
Steps listed below are specific to PHP / PostgreSQL project which also needs memcached. That is not ideal flow because each component should be run separately and run using Docker Compose however that is my...
Did you have a case when you have to create multiple accounts for specific service (e.g. iTunesConnect, Twitter, etc)? During development / testing process you definitely need this and the problem here that you...
Even though you can create unit tests using coding language used at your project sometimes it is better to decouple these tasks and create tests separately from the main codebase to be able to...