You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.8 KiB
43 lines
1.8 KiB
From 3ebc3d9fe6a9806de2bcdf79ac6398f0c14c3246 Mon Sep 17 00:00:00 2001
|
|
From: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>
|
|
Date: Tue, 3 May 2016 15:41:52 +0200
|
|
Subject: [PATCH 5/5] Fix test in test-onedrive
|
|
|
|
---
|
|
qa/libcmis/test-onedrive.cxx | 10 ++++++++--
|
|
1 file changed, 8 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/qa/libcmis/test-onedrive.cxx b/qa/libcmis/test-onedrive.cxx
|
|
index b88751b..5da8918 100644
|
|
--- a/qa/libcmis/test-onedrive.cxx
|
|
+++ b/qa/libcmis/test-onedrive.cxx
|
|
@@ -51,6 +51,7 @@ static const string CLIENT_SECRET ( "mock-secret" );
|
|
static const string USERNAME( "mock-user" );
|
|
static const string PASSWORD( "mock-password" );
|
|
static const string LOGIN_URL ("https://login/url" );
|
|
+static const string LOGIN_URL2 ("https://login2/url" );
|
|
static const string APPROVAL_URL ("https://approval/url" );
|
|
static const string AUTH_URL ( "https://auth/url" );
|
|
static const string TOKEN_URL ( "https://token/url" );
|
|
@@ -123,10 +124,15 @@ OneDriveSession OneDriveTest::getTestSession( string username, string password )
|
|
string("&redirect_uri=") + REDIRECT_URI +
|
|
string("&response_type=code") +
|
|
string("&client_id=") + CLIENT_ID;
|
|
+
|
|
curl_mockup_addResponse ( AUTH_URL.c_str(), loginIdentifier.c_str( ),
|
|
- "GET", DATA_DIR "/gdrive/login.html", 200, true);
|
|
+ "GET", DATA_DIR "/gdrive/login1.html", 200, true);
|
|
+
|
|
+ //authentication email
|
|
+ curl_mockup_addResponse( LOGIN_URL2.c_str( ), empty.c_str( ), "POST",
|
|
+ DATA_DIR "/gdrive/login2.html", 200, true);
|
|
|
|
- //authentication response
|
|
+ //authentication password
|
|
curl_mockup_addResponse( LOGIN_URL.c_str( ), empty.c_str( ), "POST",
|
|
DATA_DIR "/gdrive/approve.html", 200, true);
|
|
|
|
--
|
|
2.7.4
|
|
|