Unit Test Azure Cloud Services

Abhijeet

I wrote a couple of visual studio unit tests to test business logic included in worker role.

My worker role publishes message to Azure topics. For this I have specified connection strings in CloudConfig.cfg & I pick up the settings using RoleEnvironment.GetConfigurationSettingValue(). Since tests run in their own app domain & not inside azure emulator. Call to those functions would obviously fail.

What are the best practices out there to handle this scenario?

Gaurav Mantri

Instead of using RoleEnvironment.GetConfigurationSettingValue, use CloudConfigurationManager.GetSetting. This will pick up configuration settings from appropriate config file - service configuration file if your code is running in context of a cloud service or app.config/web.config otherwise.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Webconfig overrides for Azure Cloud Services

From Dev

Azure Cloud Services and Web Jobs

From Dev

Understanding Azure cloud services firewall

From Dev

Azure Cloud Services and Web Jobs

From Dev

AngularJS override (mock) services for unit test

From Dev

Windows Phone 8, location services and Unit Test

From Dev

Additional dependencies on other services in angular unit test

From Dev

AngularJS override (mock) services for unit test

From Dev

How are the "Cloud Services" created for Virtual Machines and Azure Cloud Services related?

From Dev

how to test wcf rest services in vs "unit test project"?

From Dev

how to test wcf rest services in vs "unit test project"?

From Dev

How to unit test Google Cloud Endpoints

From Dev

Can I deploy to Azure Cloud Services with a mac?

From Dev

Azure Cloud Services file system access

From Dev

Azure - Multiple Cloud Services, Single Storage Account

From Dev

Authentication for Azure Mobile Web Services test pages

From Dev

Best Unit Test Framework for Windows Azure Solutions

From Dev

Azure unit test fails in MSTest but passes in Resharper

From Dev

How to write a unit test for a method which calls other services

From Dev

Angular 4/5 unit test case .toBe in Services

From Dev

How to deploy an cspkg stored in Azure storage to Azure cloud services (classic)?

From Dev

How do you unit test Google Cloud NDB code?

From Dev

Exclude Spring Cloud Config Server from Spring boot unit test

From Dev

What are the use cases of Azure Cloud Services Worker Roles?

From Dev

In Azure do i get charged for both a virtual machine and cloud services?

From Dev

Is there some log files for Azure Cloud Services for the WaIISHost crashes

From Dev

Deployment of ASP.NET vNext Application to Azure Cloud Services

From Dev

How to precompile Web application prior to publishing on Azure Cloud Services

From Dev

Impact of BASH bug on Azure Websites, Cloud Services and SQL Database?

Related Related

  1. 1

    Webconfig overrides for Azure Cloud Services

  2. 2

    Azure Cloud Services and Web Jobs

  3. 3

    Understanding Azure cloud services firewall

  4. 4

    Azure Cloud Services and Web Jobs

  5. 5

    AngularJS override (mock) services for unit test

  6. 6

    Windows Phone 8, location services and Unit Test

  7. 7

    Additional dependencies on other services in angular unit test

  8. 8

    AngularJS override (mock) services for unit test

  9. 9

    How are the "Cloud Services" created for Virtual Machines and Azure Cloud Services related?

  10. 10

    how to test wcf rest services in vs "unit test project"?

  11. 11

    how to test wcf rest services in vs "unit test project"?

  12. 12

    How to unit test Google Cloud Endpoints

  13. 13

    Can I deploy to Azure Cloud Services with a mac?

  14. 14

    Azure Cloud Services file system access

  15. 15

    Azure - Multiple Cloud Services, Single Storage Account

  16. 16

    Authentication for Azure Mobile Web Services test pages

  17. 17

    Best Unit Test Framework for Windows Azure Solutions

  18. 18

    Azure unit test fails in MSTest but passes in Resharper

  19. 19

    How to write a unit test for a method which calls other services

  20. 20

    Angular 4/5 unit test case .toBe in Services

  21. 21

    How to deploy an cspkg stored in Azure storage to Azure cloud services (classic)?

  22. 22

    How do you unit test Google Cloud NDB code?

  23. 23

    Exclude Spring Cloud Config Server from Spring boot unit test

  24. 24

    What are the use cases of Azure Cloud Services Worker Roles?

  25. 25

    In Azure do i get charged for both a virtual machine and cloud services?

  26. 26

    Is there some log files for Azure Cloud Services for the WaIISHost crashes

  27. 27

    Deployment of ASP.NET vNext Application to Azure Cloud Services

  28. 28

    How to precompile Web application prior to publishing on Azure Cloud Services

  29. 29

    Impact of BASH bug on Azure Websites, Cloud Services and SQL Database?

HotTag

Archive