Using IntelliJ Version Control > Log > Copy Revision Number with the following command is incredibly helpful in sharing commit summaries: git show -s –format=%s sha1 sha2 sha3 …
Continue ReadingCategory: Uncategorized
Mac OS Import Keystore for Target Endpoint Under Test
So I like the following in obtaining browser client certs so that my test clients (i.e. io.restassured) can trust them: openssl s_client -connect www.website.com:443 -showcerts Then I can import the server cert for my integration tests into a new keystore: cd ~ /Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/bin/keytool -import -trustcacerts -keystore cacerts -noprompt -file ~/browser_cert.cer and then have my tests use…
Continue ReadingManually Entering in Host-only Networks to Bypass Mirantis OpenStack VirtualBox Script Errors
Create the following manually in VirtualBox > Preferences > Network > Host-only Networks. If the first host-only adapter fails to take the setting after clicking ok and returning to the dialog, try setting the last part of the IP to .2 instead of .1. This seems to be an issue on Windows hosts: http://bit.ly/1vqrEHC. vboxnet0…
Continue Reading