The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
114 views

E2E testing remote AngularJS application

I'm trying to realize E2E testing of existing AngularJS application with Karma Test Runner. My application is located on host1.internal and I'm on host2.internal. So in my karma config file I have: ...
0
votes
0answers
30 views

Execute and run another karmas server from already running test

I need to validate functionality of refresh service. The refresh service is working only if any changes were be done on the server side. I was wonder if it possible to execute different karma server ...
4
votes
2answers
172 views

Why is Angular $timeout blocking End-To-End tests?

I've made a directive which is used to show notification messages to a user. To show the notification I wrote this: $scope.$watch($messaging.isUpdated, function() { $scope.messages = ...
4
votes
1answer
97 views

End-to-end UI tests for a collaborative web app?

We have a collaborative web app where actions taken in User A's browser will have side effects in User B's browser. A chat room is part of the app, and a good example of what we're trying to test. ...
3
votes
1answer
718 views

AngularJS e2e Testing: How To Get value of repeater().count()?

Problem Calling repeater('#myTable tr','Rows').count(); returns a Future, not an integer. I need to get the integer value so I can confirm that an additional row was added to a table. Code ...
3
votes
1answer
405 views

Is it possible to use Testacular for non-AngularJS app for end-to-end testing

I'm building a simple app and want to use Testacular as the test runner. Testacular is simple to setup for unit testing but the possibility of using it for e2e also seems great, however my app will ...
3
votes
2answers
607 views

How to mock an AJAX request?

What is the simplest way to modify scenarios.js to mock an AJAX request during an end-to-end test? <!doctype html> <html lang="en" ng-app="myApp"> <head> <meta ...
0
votes
0answers
22 views

If an ISP is throttling based on information at the transport or application layer, is that considered a violation of the end-to-end principle? [closed]

If an ISP is throttling your bandwidth based on information at the Transport or Application layer, is that considered a violation of the end-to-end principle? Like for example, for let's say your ISP ...
2
votes
1answer
129 views

Using Reflection to create a Mock of an interface that is unknown during buildtime

For my ned to end testing it is important that my testassembly does not preload a shadowcopy of a dependent assembly. Assembly T is the Testframework that loads and tests Assembly A. Assembly A ...
1
vote
1answer
59 views

Failing to cast namespaceA.objectA to namespaceA.objectA

The EndToEnd test of my application includes loading the releasedlls by hand. During testing i always have the following loaded: - NUnit shadowcopy of n debug assemblies - Postbuildeventcopy of n ...
3
votes
2answers
373 views

Best practice for end to end testing whole systems

End to end testing means exercising an application from the outer boundaries to verify its behavior. This far I've only done written tests for a single executable artifact. How should I test systems ...
5
votes
1answer
251 views

Too much end-to-end testing? [closed]

I am really frustrated by this whole situation, and here is why: I inherited a completely untested legacy system for keeping many different client databases and one master database (with a different ...
0
votes
2answers
268 views

BDD and ASP.NET MVC - Finding the Highway

About half a year ago, I started digging into unit testing. I made my way into TDD (or what I thought it was) and now I want to develop a MVC Application behavior-driven. The concept of acceptance ...
0
votes
1answer
87 views

Using IP address vs host name in end-to-end request with SSL

So, note that this is not about browser-server communication. In server-to-server communication, would using the other server's IP address to make a request, as opposed to using its host name, reduce ...
3
votes
1answer
1k views

Secure XMPP on Google app engine

Does anyone know if its possible to have end-to-end encryption on xmpp messages from the google app engine, like you can with google talk?
2
votes
3answers
367 views

Python test “framework” for testing input files and their outputs

I'm writing end-to-end tests for my tool, which is written in Python. The tool reads a file as input. I want to test its exit code, and its output. This is a fairly common idiom, and I've seen it ...
2
votes
2answers
224 views

How to manage test fixtures for end-to-end testing?

Having just set up a test framework for a new web application, I realized I missed one of the big questions: "How do I make tests independent from each other?" Years ago I have set up some ...
7
votes
8answers
2k views

What best practices do you use for testing database queries?

I'm currently in the process of testing our solution that has the whole "gamut" of layers: UI, Middle, and the omnipresent Database. Before my arrival on my current team, query testing was done by ...