Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Side by Side Diff: mojo/public/cpp/bindings/tests/validation_unittest.cc

Issue 921223002: Cpp bindings: Return false from Validator::Accept() on unrecognized message or invalid flags (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix comments in JS test. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stdio.h> 5 #include <stdio.h>
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 364
365 TEST_F(ValidationTest, Conformance) { 365 TEST_F(ValidationTest, Conformance) {
366 DummyMessageReceiver dummy_receiver; 366 DummyMessageReceiver dummy_receiver;
367 mojo::internal::FilterChain validators(&dummy_receiver); 367 mojo::internal::FilterChain validators(&dummy_receiver);
368 validators.Append<mojo::internal::MessageHeaderValidator>(); 368 validators.Append<mojo::internal::MessageHeaderValidator>();
369 validators.Append<ConformanceTestInterface::RequestValidator_>(); 369 validators.Append<ConformanceTestInterface::RequestValidator_>();
370 370
371 RunValidationTests("conformance_", validators.GetHead()); 371 RunValidationTests("conformance_", validators.GetHead());
372 } 372 }
373 373
374 // This test is similar to the Conformance test but for responses.
yzshen1 2015/03/13 22:55:03 "Conformance" means "all binding implementations n
rudominer 2015/03/16 21:24:31 I have settled on the "conformance_" prefix for th
375 TEST_F(ValidationTest, Response) {
376 DummyMessageReceiver dummy_receiver;
377 mojo::internal::FilterChain validators(&dummy_receiver);
378 validators.Append<mojo::internal::MessageHeaderValidator>();
379 validators.Append<ConformanceTestInterface::ResponseValidator_>();
380
381 RunValidationTests("response_", validators.GetHead());
382 }
383
374 // Test that InterfacePtr<X> applies the correct validators and they don't 384 // Test that InterfacePtr<X> applies the correct validators and they don't
375 // conflict with each other: 385 // conflict with each other:
376 // - MessageHeaderValidator 386 // - MessageHeaderValidator
377 // - X::ResponseValidator_ 387 // - X::ResponseValidator_
378 TEST_F(ValidationIntegrationTest, InterfacePtr) { 388 TEST_F(ValidationIntegrationTest, InterfacePtr) {
379 IntegrationTestInterfacePtr interface_ptr = 389 IntegrationTestInterfacePtr interface_ptr =
380 MakeProxy<IntegrationTestInterface>(testee_endpoint().Pass()); 390 MakeProxy<IntegrationTestInterface>(testee_endpoint().Pass());
381 interface_ptr.internal_state()->router_for_testing()->EnableTestingMode(); 391 interface_ptr.internal_state()->router_for_testing()->EnableTestingMode();
382 392
383 RunValidationTests("integration_intf_resp", test_message_receiver()); 393 RunValidationTests("integration_intf_resp", test_message_receiver());
(...skipping 11 matching lines...) Expand all
395 MakeRequest<IntegrationTestInterface>(testee_endpoint().Pass())); 405 MakeRequest<IntegrationTestInterface>(testee_endpoint().Pass()));
396 binding.internal_router()->EnableTestingMode(); 406 binding.internal_router()->EnableTestingMode();
397 407
398 RunValidationTests("integration_intf_rqst", test_message_receiver()); 408 RunValidationTests("integration_intf_rqst", test_message_receiver());
399 RunValidationTests("integration_msghdr", test_message_receiver()); 409 RunValidationTests("integration_msghdr", test_message_receiver());
400 } 410 }
401 411
402 } // namespace 412 } // namespace
403 } // namespace test 413 } // namespace test
404 } // namespace mojo 414 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698