Questions tagged [black-box]

A black box is a device, system or object which can be viewed in terms of its input, output and transfer characteristics without any knowledge of its internal workings.

  • In computer programming and software engineering, black box testing is used to check that the output of a program is as expected, given certain inputs.[4] The term "black box" is used because the actual program being executed is not examined.
  • In computing in general, a black box program is one where the user cannot see its inner workings (perhaps because it is a closed source program) or one which has no side effects and the function of which need not be examined, a routine suitable for re-use.
  • Also in computing, a black box refers to a piece of equipment provided by a vendor, for the purpose of using that vendor's product. It is often the case that the vendor maintains and supports this equipment, and the company receiving the black box typically are hands-off.

http://en.wikipedia.org/wiki/Black_box

67 questions
3
votes
1 answer

Can mystic solve black box optimization problems with constraints?

I would like to know whether constrained blackbox optimization is possible using mystic in python. If so what algorithms will be available in this optimization package?
Sreenath
  • 51
  • 3
3
votes
6 answers

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 "black box" testing the class, I've checked things…
harpo
  • 41,820
  • 13
  • 96
  • 131
3
votes
4 answers

What is black box test?

I've searched through the web, but each source says differently. So I've made two kinds of test. The first one is the 'data cycle test' from TMap and the second a input-output black box test. Now I know that the black box test, is testing the…
2
votes
1 answer

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 mind are: Restore known DB Run sql agent job…
Rob McCready
  • 1,909
  • 1
  • 19
  • 20
2
votes
0 answers

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 from the cache If it's not, generate the cache…
Elazar Leibovich
  • 32,750
  • 33
  • 122
  • 169
2
votes
1 answer

How to generate code to RTL with blackbox?

When I want to convert code chisel to verilog with black box, I have error. How can I fix it? [error] /data/workspace/chisel/chisel3-3.1.8/src/main/scala/tap/dti_bypass_register.scala:45:18: overloaded method value execute with alternatives: import…
NguyenDien
  • 31
  • 2
2
votes
2 answers

Prometheus not reading blackbox targets from file_sd_configs

I'm configuring blackbox for monitoring my websites. Prometheus static config targets are working but are also little bit messy. I would to put all my targets into file but its not working at all. docker-compose: version: '2.1' volumes: …
MrNetroful
  • 497
  • 8
  • 28
2
votes
3 answers

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 to enable/disable tap-to-click. I'm trying to…
username
  • 18,800
  • 11
  • 41
  • 45
2
votes
6 answers

Black Box testing software

We are about to get a canned package in that has been modified to our needs. I'm 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. My question is what free or open source testing tools…
Ken Wren
  • 150
  • 1
  • 8
2
votes
3 answers

Black-Box for example

I read about black-box testing on wikipedia. I would love to try to learn Black-Box testing techniques but the problem is that I can not find any site that provides Black-Box examples. Is there a site that does this? Perhaps websites like (only…
Roni
  • 127
  • 1
  • 17
2
votes
4 answers

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 that need to be tested. So my question is can i…
Decebal
  • 1,376
  • 1
  • 21
  • 36
2
votes
2 answers

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]] > a[k]) {p[j] = p[j-1]; j--} p[j] = k; } } What…
AJ.
  • 2,561
  • 9
  • 46
  • 81
2
votes
2 answers

How to find a function that can approximate another blackbox function programmatically?

I have two functions m1 = f1(w, s) m2 = f2(w, s) f1() and f2() are all blackboxs. Given w and s, I can get m1 and m2. Now, I need to design or find a function g, such that m2' = g(m1) Also, the difference between m2 and m2' must be…
user2420472
  • 1,127
  • 1
  • 12
  • 20
2
votes
2 answers

turned on bits counter

Suppose I have a black box with 3 inputs (each input is 1 bit) and 2 bits output. The black box counts the amount of turned on input bits. Using only such black boxes,one needs to implement the counter of turned on bits in the input,which has 7…
YAKOVM
  • 9,805
  • 31
  • 116
  • 217
1
vote
1 answer

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 responsible for making these modifications. But once…
Brian Mains
  • 50,520
  • 35
  • 148
  • 257