summaryrefslogtreecommitdiff
path: root/src/components/include/test/connection_handler/mock_connection_handler.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'feature/cloud_app_transport' into ↵Jacob Keeler2019-03-051-2/+6
|\ | | | | | | feature/secure_websocket_connection
| * Add auth_token to StartServiceACK for cloud appsjacobkeeler2019-02-261-0/+3
| |
| * Revert "Update based on comments"jacobkeeler2019-02-241-2/+3
| | | | | | | | | | | | | | | | This reverts commit d67a37a5dedfe696dd4308fd0eb53ee48e15daf8. # Conflicts: # src/components/application_manager/src/application_manager_impl.cc # src/components/connection_handler/src/connection_handler_impl.cc
* | Fix merge conflict typoJacob Keeler2019-02-081-1/+1
| |
* | Merge branch 'feature/cloud_app_connection_status' into ↵Jacob Keeler2019-02-071-2/+1
|\ \ | |/ | | | | feature/secure_websocket_connection
| * Merge branch 'feature/cloud_app_transport' into ↵feature/cloud_app_connection_statusJacob Keeler2019-01-221-3/+2
| |\ | | | | | | | | | feature/cloud_app_connection_status
| | * Update based on commentsJackLivio2019-01-211-3/+2
| | |
* | | Merge branch 'feature/cloud_app_connection_status' into ↵Jacob Keeler2019-01-021-0/+1
|\ \ \ | |/ / | | | | | | feature/secure_websocket_connection
| * | Refresh app list when an app is enabled or disabledjacobkeeler2018-12-121-0/+1
| | |
* | | Fix mock test filesShobhitAd2018-12-101-4/+4
|/ /
* | Add method headers and fix stylejacobkeeler2018-11-271-2/+3
| | | | | | | | Also fix issues with retry timer management
* | Fix build issues and test failuresjacobkeeler2018-11-271-1/+1
| |
* | Merge remote-tracking branch 'origin/feature/cloud_app_connection_flow' into ↵jacobkeeler2018-11-261-0/+4
|\ \ | |/ | | | | feature/cloud_app_connection_status
| * Address comments, fix unit test failuresJackLivio2018-11-201-0/+4
| |
* | Add cloud connection statusjacobkeeler2018-11-161-0/+2
|/ | | | Also required some refactoring regarding the retry process for cloud apps, as well as how the HMIApplication struct was filled.
* Merge pull request #295 in NAR/sdl-core from ↵Frank Ronneburg2018-07-041-3/+6
| | | | | | | | | | | | | | | bugfix/remove_non_const_data_accessor to feature/Ford-WiFi * commit '5aee98d0ad298440aca8fd7da5a9725b595aa775': Update unit tests to align with new Connection Handler methods updated some comments Remove usage of NonConstDataAccessor in ConnectionHandler Conflicts: src/components/connection_handler/src/connection_handler_impl.cc src/components/connection_handler/test/connection_test.cc src/components/connection_handler/test/heart_beat_monitor_test.cc src/components/protocol_handler/test/protocol_handler_tm_test.cc
* Merge pull request #290 in NAR/sdl-core from bugfix/handle_review to ↵Sho Amano2018-06-271-10/+0
| | | | | | | feature/Ford-WiFi * commit '9d4d335347fe5ccf69c99e21d2e12e9a2bcd0fd7': address review comments from OSS maintainer
* alignment and style checkfronneburg2018-04-191-1/+1
|
* fix buildfronneburg2018-04-131-0/+3
|
* Merge pull request #236 in NAR/sdl-core from fix/build_errors_in_tests to ↵Frank Ronneburg2018-04-111-0/+19
| | | | | | | | | | | | | | | | | | | | | | | feature/Ford-WiFi * commit 'd529b059e47f170c77137ac1edf10c0696a7bb6b': fallout from other changes in the Ford-WiFi branch revert device_type hacks revert device_type hacks UT: support newly added Application::deferred_resumption_hmi_level() UT: support newly added ApplicationManager::CheckResumptionRequiredTransportAvailable() UT: update test cases to support new protocol frames UT: fix CheckStringContainer() test case UT: fix test case TcpClientListenerTest IsInitialised UT: support newly added TransportAdapter::GetDeviceType() UT: support newly added transport_manager_tcp_adapter_network_interface() method Remove invalid test cases Add/fix mock methods for testing Update test code to add new arg in Connection::AddNewSession() and AddNewService() Update test code related to SessionContext struct Update test codes related to SendEndService() Update DeviceInfo struct in test codes Add mock methods for testing
* Fix style issues in projectfix/style_issues_developjacobkeeler2018-02-011-5/+5
|
* Fix deprecated warnings in application_impl and connection_handler_implfix/deprecated_warningsjacobkeeler2018-02-011-1/+2
|
* Replace deprecation comments with DEPRECATED macroAndriy Byzhynar2018-01-181-6/+5
|
* Replace pragma with header guardsAndriy Byzhynar2018-01-181-0/+5
| | | | | | | Replaced #pragma once usage with header guards Added wrappers for deprecated functions Fixed related unit tests Fixed coding style in places related to code chages
* Reverts deprecated interfacesAndrey Oleynik (GitHub)2018-01-181-0/+2
|
* Adds descriptions, removes unused codeAndrey Oleynik (GitHub)2018-01-181-1/+0
|
* Updates mocks and tests, makes code buildable with tests enabledAndrey Oleynik (GitHub)2018-01-181-0/+1
|
* fix: wrong service started result may be notifiedSho Amano2017-08-111-2/+4
| | | | | | | | | | This commit includes following changes: - Add session_key arg in ConnectionHandler::NotifyServiceStartedResult() - Use the session key to remember ServiceStartedContext until NotifyServiceStartedResult() is called Reflecting review comments.
* Add implementation for video streaming parametersSho Amano2017-08-111-0/+2
|
* Fix coding styleLevchenko2016-08-051-2/+1
| | | | | | | | | Has been done: - Fixed coding style; - Fixed header guard naming; - Fixed copyright comments. Related to: APPLINK-24892
* AppLaunch TM and CH implementationAGaliuzov2016-08-031-0/+3
| | | | | | Applaunch functionality in TransportMaanger and ConnectionHAndler implementation Related issue : APPLINK-24892
* Format all code in projectKozoriz2016-04-261-36/+27
| | | | | | | | | | Formated all code in appMain, components, plugins to correct coding-style Used clang-format-3.6 Used 2 commands : find src/appMain/ -name "*.h" -o -name "*.cc" -o -name "*.hpp" -o -name "*.cpp" | xargs clang-format-3.6 -i -style=file find src/components/ -name "*.h" -o -name "*.cc" -o -name "*.hpp" -o -name "*.cpp" | xargs clang-format-3.6 -i -style=file find src/plugins/ -name "*.h" -o -name "*.cc" -o -name "*.hpp" -o -name "*.cpp" | xargs clang-format-3.6 -i -style=file
* Remove ConnectionHandler singletonKozoriz2016-03-041-0/+112
Correctives in src and tests for ConnectionHandler class Related to : APPLINK-21440