The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
162 views

SQL “sandbox” for new QA staff training: DB structure, approach, deployment and maintenance?

Complex DB solutions are not rare nowadays, so I have an idea to deploy a SQL "sandbox" for staff training before real projects come. Mainly I interested in 2 things to have: Oracle 11+ DB instance. ...
0
votes
0answers
21 views

How to tests TransactionManager? And Correct Behavior of Transactions and connections?

I have three transaction services that are executed within a transaction boundary (stratTransaction or begin transaction). All three services uses different connection (No_Transaction, ...
3
votes
2answers
105 views

How do I test injection attacks similar to SQL injection for non sql solutions, or do I?

My team is testing some products where we have forgone SQL as the back-end. This means that we have stopped executing any security tests around SQL injection. I have this nagging suspicion that ...
1
vote
1answer
81 views

Loading test data from MySQL database

I use Ruby with Selenium to do test automation on a web application that has a MySQL DB behind it. I need a good way to load data into the DB from a Ruby script. So far in my research I have found ...
1
vote
0answers
40 views

weighing tools/approaches for testing of database components

Currently the way we do this on LedgerSMB is to have SQL scripts which insert records into a test results table. This table is created in a transaction which runs the tests, and the tests always roll ...
2
votes
2answers
179 views

Comparing Sqlite databases

I would like to compare Sqlite databases with each other, both schema and data. I know that a rather crude method exists by comparing the database dumps with each other. But are ther any other methods ...
2
votes
3answers
475 views

Are there ready solutions for saving robot framework test results into a database?

I like the level of details and more or less how they look like — report.html and log.html files created as a result of selenium/robot tests run. What I don't like is if I run pybot several times ...
2
votes
2answers
255 views

Should data validation be automated in a rapid development environment

I would like to understand Data Validation for Automation in case of (Weekly/ Frequent Builds) In case of frequent code changes (Weekly builds) since the code base would change frequently Automation ...