aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* add jwt token creds test_caseGravatar Yang Gao2015-02-27
|
* Merge pull request #855 from nathanielmanistaatgoogle/python-test-portGravatar Masood Malekghassemi2015-02-27
|\ | | | | Drop fixed port from python_plugin_test
* | Fix commentGravatar Craig Tiller2015-02-27
| |
* | Extend timeouts for Travis 2xGravatar Craig Tiller2015-02-27
| |
* | Allow machine and build type tuning of slowdownGravatar Craig Tiller2015-02-27
| |
* | Increment 'try' variableGravatar Craig Tiller2015-02-27
| | | | | | | | To ensure that we actually probe different ports
* | Merge branch 'travis' of github.com:nicolasnoble/grpc into travis-c++Gravatar Craig Tiller2015-02-26
|\ \
* | | Better port pickerGravatar Craig Tiller2015-02-26
| | |
| * | Merge pull request #841 from soltanmm/py-updateGravatar Nathaniel Manista2015-02-26
| |\ \ | | | | | | | | Python code generator fixes.
| | | * Drop fixed port from python_plugin_testGravatar Nathaniel Manista2015-02-27
| | |/ | |/| | | | | | | | | | There may be some aspect of mortal sin in the way that context management is now done in this test.
* / | Make it possible to compile with gcc4.6Gravatar Craig Tiller2015-02-26
|/ /
| * Fix bugs in Python code generatorGravatar Masood Malekghassemi2015-02-26
| | | | | | | | | | Fixes module path finding in the Python code generator and the signatures of generated servicer methods.
* | Merge pull request #784 from ctiller/timeoutGravatar Yang Gao2015-02-26
|\ \ | | | | | | Introduce slowdown factor for unit test deadlines
* \ \ Merge pull request #822 from ctiller/hardGravatar David Klempner2015-02-26
|\ \ \ | | | | | | | | Fix max_concurrent_streams test
| * | | Fix max_concurrent_streams testGravatar Craig Tiller2015-02-25
| | |/ | |/|
* / | Deflake dualstack socket testGravatar David Klempner2015-02-25
|/ / | | | | | | | | | | | | | | | | The test currently allocates a single port and reuses it through the test. Given the timeouts in this test this leaves substantial race windows where other processes on the same machine could steal the port between subcases. Instead, as a simple hack, allocate a new port before each test.
* | Strip port in peer name checkGravatar Craig Tiller2015-02-25
| | | | | | | | | | | | | | This string comes from an authority field, which is allowed to contain a ':' port (see https://tools.ietf.org/html/rfc3986#section-3.2). We need to strip it before performing host name verification.
* | Merge pull request #739 from soltanmm/py-updateGravatar Nathaniel Manista2015-02-25
|\ \ | | | | | | Updated Python protoc plugin and Python plugin testing.
| | * Drastic speed upGravatar Craig Tiller2015-02-25
| | |
| | * Drastic speed upGravatar Craig Tiller2015-02-25
| | |
| | * Introduce slowdown factor for unit test deadlinesGravatar Craig Tiller2015-02-25
| |/ |/| | | | | Dramatically lowers (eliminates maybe?) false negatives from ?SAN runs.
* | Merge pull request #735 from jboeuf/fix_ssl_sanGravatar Craig Tiller2015-02-24
|\ \ | | | | | | Verifying the peer name on the X509 Certs correctly.
| | * Updated Python protoc plugin testing.Gravatar Masood Malekghassemi2015-02-24
| | |
| * | Addressing comments.Gravatar Julien Boeuf2015-02-24
| | |
* | | Merge github.com:google/grpc into deprecate-c++Gravatar Craig Tiller2015-02-23
|\ \ \ | | |/ | |/| | | | | | | | | | Conflicts: test/cpp/end2end/async_end2end_test.cc test/cpp/end2end/end2end_test.cc
| * | Merge pull request #725 from ctiller/uniqueGravatar Yang Gao2015-02-23
| |\ \ | | | | | | | | Move to unique_ptr for all GRPC returned objects
| | | * Verifying the peer name on the X509 Certs correctly.Gravatar Julien Boeuf2015-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - The SANs take precedence over the CN. - The CN is only checked if there are no SANs. - Fixing the tests as the test cert did not list *.test.google.com in the SANs. Will fix the test cert another time...
| * | | Addressing a first batch of feedback.Gravatar Nicolas Noble2015-02-23
| | |/ | |/|
| * | Merge pull request #710 from jboeuf/default_google_credsGravatar Craig Tiller2015-02-23
| |\ \ | | | | | | | | Added support for default credentials.
* | | | s/CreateChannel/CreateChannelDeprecatedGravatar Craig Tiller2015-02-23
| | | | | | | | | | | | | | | | | | | | | | | | For the 2-argument version of CreateChannel. This is a temporary step until #711 is ready to roll out.
| | * | Addressing iniitial feedback.Gravatar Julien Boeuf2015-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Renaming default credentials -> google default credentials. - Various other things in cpp: - Adding Cpp wrapping for JWT Tokens. - Renaming ComposeCredentials -> CompositeCredentials.
| | | * Move to unique_ptr for all GRPC returned objectsGravatar Craig Tiller2015-02-23
| |_|/ |/| |
| * | Addressing security concerns.Gravatar Nicolas Noble2015-02-23
|/ / | | | | | | | | -) 0x7f (Backspace) isn't a printable character. -) use sizeof(var) instead of sizeof(type).
| * Added support for default credentials.Gravatar Julien Boeuf2015-02-21
| | | | | | | | | | | | | | | | | | - Tested with new tool (print_default_creds_token) on: - workstation for env var and well known place. - GCE for compute engine default creds. - I'd prefer the grpc_default_credentials_create() API to remain synchronous even though there may be an async call for gce detection on which we block.
* | Rename interop_test.c --> interop_test.ccGravatar Craig Tiller2015-02-21
|/ | | | We have many assumptions about languages baked into the test system, and we want this test harness to trigger when testing C++ stuff, so it needs to be written in C++.
* Merge pull request #641 from jboeuf/jwt_id_tokenGravatar Yang Gao2015-02-21
|\ | | | | Implementing JWT credentials (a.k.a JWT ID Tokens).
* | Added compiler plugin test for Python.Gravatar Masood Malekghassemi2015-02-20
| |
* | Merge pull request #669 from yang-g/commentsGravatar Michael Lumish2015-02-20
|\ \ | | | | | | clean up some internal path and names
* \ \ Merge pull request #663 from vjpai/pythonGravatar Nicolas Noble2015-02-20
|\ \ \ | | | | | | | | Minor changes for compatibility across different compilers
* \ \ \ Merge pull request #592 from ctiller/chex2Gravatar Nicolas Noble2015-02-20
|\ \ \ \ | | | | | | | | | | Fix TSAN reported error in fd_posix.c
* | | | | Make interop server respond to sigintGravatar Craig Tiller2015-02-20
| | | | | | | | | | | | | | | | | | | | This will allow the test to shut down cleanly, and avoid failing.
| | | * | clean up some internal path and namesGravatar Yang Gao2015-02-20
| |_|/ / |/| | |
| | * | Some compilers not happy with <:: and need < :: insteadGravatar vjpai2015-02-20
| |/ / |/| |
* | | Merge pull request #606 from yang-g/rootsGravatar Craig Tiller2015-02-20
|\ \ \ | | | | | | | | remove prod_roots_certs.c
* \ \ \ Merge pull request #652 from ctiller/interop2Gravatar Yang Gao2015-02-20
|\ \ \ \ | | | | | | | | | | Ensure interop tests are run as part of run_tests
| * | | | Ensure interop tests are run as part of run_testsGravatar Craig Tiller2015-02-20
| | | | | | | | | | | | | | | | | | | | I'm honestly a little shocked this wasn't done previously.
* | | | | 32 bit compilation fixes for coreGravatar Craig Tiller2015-02-19
|/ / / /
| | | * Adding tool for generating JWTs on the command line.Gravatar Julien Boeuf2015-02-19
| | | |
* | | | Making the usage of gflags uniform across distributions.Gravatar Nicolas "Pixel" Noble2015-02-20
| | | |
* | | | Fixing gflags' include path.Gravatar Nicolas "Pixel" Noble2015-02-20
| | | |