Tagged Questions
The black-box tag has no wiki summary.
18
votes
8answers
1k views
What's wrong with “magic”?
I'm trying to decide whether to use a Rails or a Django guru to create a web app for me. I've been recommended to use Django because it uses less "magic". From my perspective however, the "magic" of ...
10
votes
4answers
354 views
What are good algorithms for detecting abnormality?
Background
Here is the problem:
A black box outputs a new number each day.
Those numbers have been recorded for a period of time.
Detect when a new number from the black box falls outside the ...
10
votes
10answers
5k views
Black box vs White box Testing
Which type of testing would you say should be the emphasis (for testers/QAs), and why?
A quick set of definitions from wikipedia:
Black box testing
takes an external perspective of the test ...
5
votes
3answers
163 views
Find $secret in $a == md5($b . $secret)
A function is:
$a == md5($b . $secret);
You can choose $a and $b
You don't know $secret
You get the value of the function for the $a and $b you choose as either true or false.
Is there any ...
5
votes
4answers
1k views
Equivalence Class Testing vs. Boundary Value Testing
I understand how equivalence testing works. How is it the same or different from boundary value testing?
5
votes
6answers
1k views
Is it fair to accuse Rails of “magic”?
When I first started looking into Rails and Django I was steered away from Rails by Django developers who felt that Rails was a black box which uses an excess of "magic" (leaky abstractions). Upon ...
4
votes
2answers
180 views
Mathematica: Evaluation order during numerical optimisation of black box functions
I am attempting to perform a numerical optimisation of a "black box" function in Mathematica. Schematically it goes like this:
NMinimize[{comb[x,y,z], x > 0}, {x,y,z}]
where comb[x,y,z] is ...
3
votes
3answers
2k views
REST client that can handle login via oauth
I am working as a tester on a system based on a Rest API. Part of my job is to use different applications to POST files to the Rest API and then accessing the API directly via a Rest Client to verify ...
3
votes
3answers
419 views
What is black box testing and white box testing
I'm trying to understand one in terms of how it compares to the other.
Is white box testing where you can see the code and black box testing where you don't look at the code?
3
votes
0answers
1k views
How to do black box testing? [closed]
Opposed to white-box / API testing, which is covered here
There are many interviews, both for developers and qa, where you are asked to test smth out. A classic is to test the save dialog from ...
2
votes
4answers
181 views
how can i verify all links on a page as a black-box tester
I'm tryng to verify if all my page links are valid, and also something similar to me if all the pages have a specified link like contact. i use python unit testing and selenium IDE to record actions ...
2
votes
2answers
291 views
Black box test cases for insertion procedure
insertion_procedure (int a[], int p [], int N)
{
int i,j,k;
for (i=0; i<=N; i++) p[i] = i;
for (i=2; i<=N; i++)
{
k = p[i];
j = 1;
while (a[p[j-1]] > ...
2
votes
3answers
2k views
Control flow graph & cyclometric complexity for folowing procedure
insertion_procedure (int a[], int p [], int N)
{
int i,j,k;
for (i=0; i<=N; i++) p[i] = i;
for (i=2; i<=N; i++)
{
k = p[i];
j = 1;
while (a[p[j-1]] > ...
2
votes
1answer
1k views
Integration test framework?
I am looking for a test framework to cover our black box integration tests. We need something that is scriptable by non developers (aka not C# unit test type stuff).
The initial scenarios I have in ...
2
votes
6answers
297 views
Should I use “glass box” testing when it leads to *fewer* tests?
For example, I'm writing tests against a CsvReader. It's a simple class that enumerates and splits rows of text. Its only raison d'ĂȘtre is ignoring commas within quotes. It's less than a page.
By ...
2
votes
7answers
446 views
Should QA test from a strictly black-box perspective?
Assuming that unit tests are handled by development, is there any reason for QA to have knowledge of the details of how a product works? By which I mean, do they need to know what's going on in the ...
2
votes
5answers
422 views
Black Box testing software
We are about to get a canned package in that has been modified to our needs. I am part of the team setup to prepare tests for it. It has an Oracle back end and I believe it's written in C++ .NET.
...
1
vote
1answer
136 views
Entity Framework SaveChanges - Customize Behavior?
So you instantiate an EF context, push objects in or pull objects out, it tracks the complete state of the object changes (if change tracking on). Up until this point the developer has been ...
1
vote
0answers
24 views
Stabilizing a fragile web application by proxy
I'm having an unstable dynamic web application which I want to stabilize by running in this settings:
Given a GET request to url U I will
Look for U in the cache - if it's already there - fetch it ...
1
vote
1answer
298 views
Best Design Pattern for Black-Box Trading
I am starting a project that involves coding a Black-Box Trading Bot for a strategy one of my friends created, and I was trying to think of what the best design pattern would be.
My current thought is ...
1
vote
1answer
225 views
Tips for Black Box QA Testing
Are there any good resources for learning to do black box QA testing? I applied for what looked like a technical testing position, but discovered in the interview that it was black box QA (I really ...
1
vote
0answers
143 views
documenting black-box test cases
I want to write an initial (black box) test cases for one of my university projects. I haven't started coding yet, I'm still in completing the SRS document and i should specify the test cases i'm ...
1
vote
1answer
138 views
Rogue black-box java application not responding to standard input redirect
I have an external java application (blackbox), which requires authentication. I need to run this application in a batch setting, but it seems to be reading from standard input in some nonstandard ...
1
vote
3answers
984 views
best tool to reverse-engineer a WinXP PS/2 touchpad driver?
I have a PS/2 touchpad which I would like to write a driver for (I'm just a web guy so this is unfamiliar territory to me). The touchpad comes with a Windows XP driver, which apparently sends messages ...
0
votes
0answers
31 views
Choosing black box testing over white box testing
In what situations would you choose black box over white box? Examples?
Would a certain program ever benefit from one over another?
0
votes
2answers
61 views
Unit test 'structure' of method?
Sorry for the long post...
While being introduced to a brown field project, I'm having doubts regarding certain sets of unit tests and what to think. Say you had a repostory class, wrapping a stored ...
0
votes
1answer
58 views
Can You Decorate a Black Box?
I have a quick, very uninformed question about the Decorator pattern. If I have a class called BlackBox that I cannot edit in any way - can't add an interface, can't make any of the methods virtual, ...
0
votes
3answers
154 views
should unit tests be black box tests or white box tests?
Say I have three methods, all very similar but with different input types:
void printLargestNumber(int a, int b) { ... }
void printLargestNumber(double a, double b) { ... }
void ...
0
votes
3answers
291 views
Using automated unit test for black box integration test, how bad is that and what is better?
I have an API that can be implemented by various vendors. I can send and receive data and get different return codes with the API.
What I want to do is be able to test the API and in an automated ...