azure-sdk-for-node/test/azure-tests.js

257 строки
11 KiB
JavaScript
Исходник Обычный вид История

2011-12-10 03:47:08 +04:00
/**
* Copyright 2011 Microsoft Corporation
*
* 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
var azure = require('../lib/azure');
var ServiceBusServiceClient = require('../lib/services/core/servicebusserviceclient');
2011-12-10 03:47:08 +04:00
var ServiceClient = azure.ServiceClient;
var environmentAzureStorageAccount = 'myaccount';
var environmentAzureStorageAccessKey = 'myaccountstoragekey';
2012-02-09 05:21:16 +04:00
var environmentServiceBusNamespace = 'mynamespace';
var environmentServiceBusIssuer = 'myissuer';
2012-02-14 06:35:29 +04:00
var environmentServiceBusAccessKey = 'myaccesskey';
2012-02-09 05:21:16 +04:00
var environmentWrapNamespace = 'mynamespace-sb';
2011-12-10 03:47:08 +04:00
var parameterAzureStorageAccount = 'storageAccount';
var parameterAzureStorageAccessKey = 'storageAccesKey';
var firstRun = true;
var originalAzureStorageAccount = null;
var originalAzureStorageAccessKey = null;
2012-02-09 05:21:16 +04:00
var originalServiceBusNamespace = null;
var originalServiceBusIssuer = null;
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];
}
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;
}
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();
});
2011-12-10 03:47:08 +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
// 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-02-24 10:25:15 +04:00
assert.equal(blobService1.host, ServiceClient.CLOUD_BLOB_HOST);
assert.equal(blobService1.usePathStyleUri, false);
2011-12-10 03:47:08 +04:00
process.env[ServiceClient.EnvironmentVariables.EMULATED] = true;
2012-02-24 10:25:15 +04:00
assert.equal(azure.isEmulated(), true);
2011-12-10 03:47:08 +04:00
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);
assert.equal(blobService.host, 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);
// 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
// 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();
});
2011-12-10 03:47:08 +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();
});
2011-12-10 03:47:08 +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);
assert.equal(blobService.host, 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-02-09 05:21:16 +04:00
2012-02-24 10:25:15 +04:00
test('MissingServiceBusIssuerAndWrapNamespace', function (done) {
2012-02-09 05:21:16 +04:00
delete process.env[ServiceClient.EnvironmentVariables.AZURE_WRAP_NAMESPACE];
delete process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_ISSUER];
process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_NAMESPACE] = environmentServiceBusNamespace;
2012-02-14 06:35:29 +04:00
process.env[ServiceClient.EnvironmentVariables.AZURE_SERVICEBUS_ACCESS_KEY] = environmentServiceBusAccessKey;
2012-02-09 05:21:16 +04:00
// Create service bus client without passing any credentials
var serviceBusService = azure.createServiceBusService();
// set correctly
2012-02-24 10:25:15 +04:00
assert.equal(serviceBusService.namespace, environmentServiceBusNamespace);
assert.equal(serviceBusService.accessKey, environmentServiceBusAccessKey);
2012-02-09 05:21:16 +04:00
// defaulted correctly
2012-02-24 10:25:15 +04:00
assert.equal(serviceBusService.acsNamespace, environmentServiceBusNamespace + ServiceClient.DEFAULT_WRAP_NAMESPACE_SUFFIX);
assert.equal(serviceBusService.issuer, ServiceClient.DEFAULT_SERVICEBUS_ISSUER);
2012-02-09 05:21:16 +04:00
2012-02-24 10:25:15 +04:00
done();
});
});