2011-12-10 03:47:08 +04:00
|
|
|
|
/**
|
2012-06-25 22:18:20 +04:00
|
|
|
|
* Copyright (c) Microsoft. All rights reserved.
|
2011-12-10 03:47:08 +04:00
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
var assert = require('assert');
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-04-16 09:40:23 +04:00
|
|
|
|
// Test includes
|
|
|
|
|
var testutil = require('./util/util');
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-04-16 09:40:23 +04:00
|
|
|
|
// Lib includes
|
|
|
|
|
var azure = testutil.libRequire('azure');
|
|
|
|
|
var ServiceBusServiceClient = testutil.libRequire('services/core/servicebusserviceclient');
|
2011-12-10 03:47:08 +04:00
|
|
|
|
var ServiceClient = azure.ServiceClient;
|
|
|
|
|
|
|
|
|
|
var environmentAzureStorageAccount = 'myaccount';
|
2012-10-13 00:50:18 +04:00
|
|
|
|
var environmentAzureStorageAccessKey = 'AhlzsbLRkjfwObuqff3xrhB2yWJNh1EMptmcmxFJ6fvPTVX3PZXwrG2YtYWf5DPMVgNsteKStM5iBLlknYFVoA==';
|
2012-02-09 05:21:16 +04:00
|
|
|
|
var environmentServiceBusNamespace = 'mynamespace';
|
|
|
|
|
var environmentServiceBusIssuer = 'myissuer';
|
2012-10-13 00:50:18 +04:00
|
|
|
|
var environmentServiceBusAccessKey = 'AhlzsbLRkjfwObuqff3xrhB2yWJNh1EMptmcmxFJ6fvPTVX3PZXwrG2YtYWf5DPMVgNsteKStM5iBLlknYFVoA==';
|
2012-02-09 05:21:16 +04:00
|
|
|
|
var environmentWrapNamespace = 'mynamespace-sb';
|
|
|
|
|
|
2011-12-10 03:47:08 +04:00
|
|
|
|
var parameterAzureStorageAccount = 'storageAccount';
|
2012-10-13 02:53:02 +04:00
|
|
|
|
var parameterAzureStorageAccessKey = 'AhlzsbLRkjfwObuqff3xrhB2yWJNh1EMptmcmxFJ6fvPTVX3PZXwrG2YtYWf5DPMVgNsteKStM5iBLlknYFVoA==';
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
|
|
|
|
var firstRun = true;
|
|
|
|
|
var originalAzureStorageAccount = null;
|
|
|
|
|
var originalAzureStorageAccessKey = null;
|
2012-02-09 05:21:16 +04:00
|
|
|
|
var originalServiceBusNamespace = null;
|
|
|
|
|
var originalServiceBusIssuer = null;
|
2012-02-14 06:53:57 +04:00
|
|
|
|
var originalServiceBusAccessKey = null;
|
2012-02-09 05:21:16 +04:00
|
|
|
|
var originalWrapNamespace = null;
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
suite('azure', function () {
|
|
|
|
|
setup(function (done) {
|
2011-12-10 03:47:08 +04:00
|
|
|
|
if (firstRun) {
|
|
|
|
|
firstRun = false;
|
|
|
|
|
|
|
|
|
|
// On the first run store the previous azure storage account / azure storage access key from the environment
|
|
|
|
|
if (!originalAzureStorageAccount && process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCOUNT]) {
|
|
|
|
|
originalAzureStorageAccount = process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCOUNT];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!originalAzureStorageAccessKey && process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCESS_KEY]) {
|
|
|
|
|
originalAzureStorageAccessKey = process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCESS_KEY];
|
|
|
|
|
}
|
2012-02-09 05:21:16 +04:00
|
|
|
|
|
|
|
|
|
// On the first run store the previous azure storage account / azure storage access key from the environment
|
|
|
|
|
if (!originalServiceBusNamespace && process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_NAMESPACE]) {
|
|
|
|
|
originalServiceBusNamespace = process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_NAMESPACE];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!originalServiceBusIssuer && process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_ISSUER]) {
|
|
|
|
|
originalServiceBusIssuer = process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_ISSUER];
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-14 06:53:57 +04:00
|
|
|
|
if (!originalServiceBusAccessKey && process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_ACCESS_KEY]) {
|
|
|
|
|
originalServiceBusAccessKey = process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_ACCESS_KEY];
|
2012-02-09 05:21:16 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!originalWrapNamespace && process.env[ServiceClient.EnvironmentVariables.AZURE_WRAP_NAMESPACE]) {
|
|
|
|
|
originalWrapNamespace = process.env[ServiceClient.EnvironmentVariables.AZURE_WRAP_NAMESPACE];
|
|
|
|
|
}
|
2011-12-10 03:47:08 +04:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
done();
|
|
|
|
|
});
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
teardown(function (done) {
|
2011-12-10 03:47:08 +04:00
|
|
|
|
// Make sure emulated is never a left over after the test runs.
|
|
|
|
|
delete process.env[ServiceClient.EnvironmentVariables.EMULATED];
|
|
|
|
|
|
|
|
|
|
if (originalAzureStorageAccount) {
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCOUNT] = originalAzureStorageAccount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (originalAzureStorageAccessKey) {
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCESS_KEY] = originalAzureStorageAccessKey;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-14 06:53:57 +04:00
|
|
|
|
if (originalServiceBusNamespace) {
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_NAMESPACE] = originalServiceBusNamespace;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (originalServiceBusIssuer) {
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_ISSUER] = originalServiceBusIssuer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (originalServiceBusAccessKey) {
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_ACCESS_KEY] = originalServiceBusAccessKey;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (originalWrapNamespace) {
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_WRAP_NAMESPACE] = originalWrapNamespace;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-10 03:47:08 +04:00
|
|
|
|
// clean up
|
2012-02-24 10:25:15 +04:00
|
|
|
|
done();
|
|
|
|
|
});
|
2012-10-13 02:53:02 +04:00
|
|
|
|
/*
|
2012-02-24 10:25:15 +04:00
|
|
|
|
test('ExponentialRetryPolicyFilter', function (done) {
|
|
|
|
|
assert.notEqual(azure.ExponentialRetryPolicyFilter, null);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
done();
|
|
|
|
|
});
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
test('LinearRetryPolicyFilter', function (done) {
|
|
|
|
|
assert.notEqual(azure.LinearRetryPolicyFilter, null);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
done();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('Constants', function (done) {
|
|
|
|
|
assert.notEqual(azure.Constants, null);
|
|
|
|
|
|
|
|
|
|
done();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('IsEmulated', function (done) {
|
2011-12-10 03:47:08 +04:00
|
|
|
|
var ServiceClient = azure.ServiceClient;
|
|
|
|
|
delete process.env[ServiceClient.EnvironmentVariables.EMULATED];
|
2012-02-24 10:25:15 +04:00
|
|
|
|
assert.equal(azure.isEmulated(), false);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-01-10 05:15:21 +04:00
|
|
|
|
// set some environment credentials for the live windows azure services
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCOUNT] = environmentAzureStorageAccount;
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCESS_KEY] = environmentAzureStorageAccessKey;
|
|
|
|
|
|
2011-12-10 03:47:08 +04:00
|
|
|
|
var blobService1 = azure.createBlobService();
|
2012-10-13 02:53:02 +04:00
|
|
|
|
assert.equal(blobService1.host, environmentAzureStorageAccount + '.' + ServiceClient.CLOUD_BLOB_HOST);
|
2012-02-24 10:25:15 +04:00
|
|
|
|
assert.equal(blobService1.usePathStyleUri, false);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.EMULATED] = true;
|
|
|
|
|
|
|
|
|
|
var blobService2 = azure.createBlobService();
|
2012-02-24 10:25:15 +04:00
|
|
|
|
assert.equal(blobService2.host, '127.0.0.1');
|
|
|
|
|
assert.equal(blobService2.usePathStyleUri, true);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
done();
|
|
|
|
|
});
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
test('NotEmulatedExplicitCredentials', function (done) {
|
2011-12-10 03:47:08 +04:00
|
|
|
|
// Make sure is not emulated
|
|
|
|
|
delete process.env[ServiceClient.EnvironmentVariables.EMULATED];
|
|
|
|
|
|
|
|
|
|
// set some environment credentials for the live windows azure services
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCOUNT] = environmentAzureStorageAccount;
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCESS_KEY] = environmentAzureStorageAccessKey;
|
|
|
|
|
|
|
|
|
|
// Create blob client passing some credentials
|
|
|
|
|
var blobService = azure.createBlobService(parameterAzureStorageAccount, parameterAzureStorageAccessKey);
|
|
|
|
|
|
|
|
|
|
// Points to the live services
|
2012-02-24 10:25:15 +04:00
|
|
|
|
assert.equal(blobService.usePathStyleUri, false);
|
2012-10-13 02:53:02 +04:00
|
|
|
|
assert.equal(blobService.host, parameterAzureStorageAccount.toLowerCase() + '.' + ServiceClient.CLOUD_BLOB_HOST);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
|
|
|
|
// And credentials are the ones passed
|
2012-02-24 10:25:15 +04:00
|
|
|
|
assert.equal(blobService.authenticationProvider.storageAccount, parameterAzureStorageAccount);
|
|
|
|
|
assert.equal(blobService.authenticationProvider.storageAccessKey, parameterAzureStorageAccessKey);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
done();
|
|
|
|
|
});
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
test('EmulatedExplicitCredentials', function (done) {
|
2011-12-10 03:47:08 +04:00
|
|
|
|
// set emulated to true
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.EMULATED] = true;
|
|
|
|
|
|
|
|
|
|
// set some environment credentials for the live windows azure services
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCOUNT] = environmentAzureStorageAccount;
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCESS_KEY] = environmentAzureStorageAccessKey;
|
|
|
|
|
|
|
|
|
|
// Create blob client passing some credentials
|
|
|
|
|
var blobService = azure.createBlobService(parameterAzureStorageAccount, parameterAzureStorageAccessKey);
|
|
|
|
|
|
2012-10-13 02:53:02 +04:00
|
|
|
|
// Points to the credentials
|
|
|
|
|
assert.equal(blobService.usePathStyleUri, false);
|
|
|
|
|
assert.equal(blobService.host + ':' + blobService.port, parameterAzureStorageAccount.toLowerCase() + '.' + ServiceClient.CLOUD_BLOB_HOST + ':80');
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
|
|
|
|
// But the used credentials are the ones passed because we were explicit
|
2012-02-24 10:25:15 +04:00
|
|
|
|
assert.equal(blobService.authenticationProvider.storageAccount, parameterAzureStorageAccount);
|
|
|
|
|
assert.equal(blobService.authenticationProvider.storageAccessKey, parameterAzureStorageAccessKey);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
done();
|
|
|
|
|
});
|
2012-10-13 02:53:02 +04:00
|
|
|
|
*/
|
2012-02-24 10:25:15 +04:00
|
|
|
|
test('EmulatedWithoutParameters', function (done) {
|
2011-12-10 03:47:08 +04:00
|
|
|
|
// set emulated to true
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.EMULATED] = true;
|
|
|
|
|
|
|
|
|
|
// set some environment credentials for the live windows azure services
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCOUNT] = environmentAzureStorageAccount;
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCESS_KEY] = environmentAzureStorageAccessKey;
|
|
|
|
|
|
|
|
|
|
// Create blob client without passing any credentials
|
|
|
|
|
var blobService = azure.createBlobService();
|
|
|
|
|
|
|
|
|
|
// Points to the emulator
|
2012-02-24 10:25:15 +04:00
|
|
|
|
assert.equal(blobService.usePathStyleUri, true);
|
|
|
|
|
assert.equal(blobService.host + ':' + blobService.port, ServiceClient.DEVSTORE_BLOB_HOST);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
|
|
|
|
// And uses the emulator credentials
|
2012-02-24 10:25:15 +04:00
|
|
|
|
assert.equal(blobService.authenticationProvider.storageAccount, ServiceClient.DEVSTORE_STORAGE_ACCOUNT);
|
|
|
|
|
assert.equal(blobService.authenticationProvider.storageAccessKey, ServiceClient.DEVSTORE_STORAGE_ACCESS_KEY);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
done();
|
|
|
|
|
});
|
2012-10-13 02:53:02 +04:00
|
|
|
|
/*
|
2012-02-24 10:25:15 +04:00
|
|
|
|
test('NotEmulatedWithoutParameters', function (done) {
|
2011-12-10 03:47:08 +04:00
|
|
|
|
// Make sure is not emulated
|
|
|
|
|
delete process.env[ServiceClient.EnvironmentVariables.EMULATED];
|
|
|
|
|
|
|
|
|
|
// set some environment credentials for the live windows azure services
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCOUNT] = environmentAzureStorageAccount;
|
|
|
|
|
process.env[ServiceClient.EnvironmentVariables.AZURE_STORAGE_ACCESS_KEY] = environmentAzureStorageAccessKey;
|
|
|
|
|
|
|
|
|
|
// Create blob client without passing any credentials
|
2012-02-09 05:21:16 +04:00
|
|
|
|
var blobService = azure.createBlobService();
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
|
|
|
|
// Points to the live service
|
2012-02-24 10:25:15 +04:00
|
|
|
|
assert.equal(blobService.usePathStyleUri, false);
|
2012-10-13 02:53:02 +04:00
|
|
|
|
assert.equal(blobService.host, environmentAzureStorageAccount + '.' + ServiceClient.CLOUD_BLOB_HOST);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
|
|
|
|
// and uses the environment variables
|
2012-02-24 10:25:15 +04:00
|
|
|
|
assert.equal(blobService.authenticationProvider.storageAccount, environmentAzureStorageAccount);
|
|
|
|
|
assert.equal(blobService.authenticationProvider.storageAccessKey, environmentAzureStorageAccessKey);
|
2011-12-10 03:47:08 +04:00
|
|
|
|
|
2012-02-24 10:25:15 +04:00
|
|
|
|
done();
|
2012-10-13 02:53:02 +04:00
|
|
|
|
});*/
|
2012-02-24 10:25:15 +04:00
|
|
|
|
});
|