Skip to content
This repository was archived by the owner on Mar 2, 2021. It is now read-only.
Peter-Donner edited this page Jun 11, 2013 · 9 revisions

Welcome to the feedbock wiki!

How to Calculate a Score for Failed Tests (Brainstorming)

  • On how many environments does a test fail?
  • For how long (how many subsequent builds) does a test fail?
  • User votes
  • How frequently does a test fail?
  • Focus on tests that failed in the latest build

Test Case Statuses from Jenkins

  • Passed
  • Failed
  • Fixed (Passed)
  • Regression (Failed)

Example entry in the testCases collection

{
  "_id" : {
  "suiteName" : "Flex 4_6 - FF",
  "className" : "Flex4_TestApp_pln.sparkSpinner_t",
  "testName" : "ChangeTest" },
  "configurations" : [
    { "name" : "BVT - WinVista", "passed" : [ 6601 ], "failed" : [] },
    { "name" : "BVT - Win8", "passed" : [ 6601 ], "failed" : [] },
    { "name" : "BVT - Win2k8", "passed" : [ 6601 ], "failed" : [] },
    { "name" : "BVT - WinXp Sp3", "passed" : [ 6601 ], "failed" : [] },
    { "name" : "BVT - Win7", "passed" : [ 6601 ], "failed" : [] } ],
  "feedback" : [],
  "score" : 10 }
}

How to add users

db.users.insert({_id:"demo", alias: "Demo User", password:"secret", createDate: new Date()});