2013-06-06 14 views
8

Dopo aver eseguito i test dell'interfaccia utente codificata in Visual Studio 2012, volevo che i risultati del test venissero registrati in un file HTML. Dopo aver seguito il tutorial this sono riuscito a ottenere questo risultato.Combina i registri HTML di test dell'interfaccia utente codificati?

Purtroppo, ogni singola prova ottiene il proprio report HTML a ..\TestResults\<Test Run Folder>\In\<Individual Test Log Folder>\<PC Name>\UITestActionLog.html, attualmente ho 3 diverse prove individuali e ognuno ha la propria cartella in ..\TestResults\<Test Run Folder>\In\

Ogni file HTML risultante si presenta così:

enter image description here

quello che voglio è per tutti e 3 i file HTML per essere combinati in una sola, e invece di

> Prova 1

Sarebbe come

> Test 1

> Test 2

> Prova 3

C'è un modo per fare questo automaticamente con alcune opzioni di configurazione o sono bloccato a scrivere un programma per unire tutti i miei file HTML se stesso?

+0

Direi di usarlo per unire i file HTML, che è quello che ho usato in passato. http://softsnow.griffin3.com/merger/merger.shtml – adaam

+0

Se l'HTML è compatibile con XHML, è possibile scrivere una piccola app C# che itera attraverso tutto * .html e utilizza linq2xml per estrarre i dati. – tofi9

+0

@taoufik sembra come se risultasse in un file .XML, preferirei che il risultato finale fosse un file .HTML combinato –

risposta

2

Calcolato una soluzione da solo, ho scritto un programma per prendere i nodi <div class="g"> da ciascun registro HTML e combinarli in un singolo file HTML. Funziona come un fascino.

+2

Sarebbe possibile caricare quel programma, sarebbe davvero utile per me. – matthiasgh

1

Ho anche scritto la mia soluzione. Dopo aver trascorso un'ora con il pacchetto agilità HTML, scoprendo che talvolta si interrompe con le immagini incorporate HTML5, ad es. ">, <".

ho semplicemente scritto una console app che analizzato i HTMLs, e combina in 1:

cmd ActionLogBuilder inputfile's.html outputfile.html

(è molto grezzo, ma funziona)

static void Main(string[] args) 
{ 
    bool only2 = false; 
    StringBuilder outputFile = new StringBuilder(); 
    if (args.Length == 2) 
    {    
     try 
     { 
      System.IO.File.Delete(args[1]); 
     } 
     catch 
     { 
      Console.WriteLine("No file to delete"); 
     } 

     System.IO.File.Move(args[0], args[1]); 
     only2 = true;    
    } 
    int endArg = args.Length; 
    Console.WriteLine(endArg.ToString()); 
    int c = 0;     
    if(!only2) 
    { 
     foreach (string a in args) 
     { 
      if (c == (endArg - 1)) 
      { 
       System.IO.TextWriter w = new System.IO.StreamWriter(a); 
       w.Write(outputFile); 
       w.Flush(); 
       w.Close(); 
       break; 
      } 
      else 
      { 
       if (c == 0) 
       { 
        using (StreamReader sr = new StreamReader(a)) 
        { 
         while (sr.Peek() >= 0) 
         { 
          string grabLine = sr.ReadLine(); 
          if (grabLine.Contains("<div class=\"test-name\">Coded UI Test Log</div>")) 
          { 
           outputFile.AppendLine("<div class=\"test-name\">Test " + (c + 1).ToString() + "</div>"); 
          } 
          else 
          { 
           if (!grabLine.Contains("</body>") | !grabLine.Contains("</html>")) 
           { 
            outputFile.AppendLine(grabLine); 
           } 
          } 
         } 
        } 
       } 
       if (c != 0 && c != (endArg - 2)) 
       { 
        bool notYet = false; 
        using (StreamReader sr = new StreamReader(a)) 
        { 
         while (sr.Peek() >= 0) 
         { 
          string grabLine = sr.ReadLine(); 


          if (grabLine.Contains("<body>")) 
          { 
           notYet = true; 
          } 
          if (grabLine.Contains("<div class=\"test-name\">Coded UI Test Log</div>")) 
          { 
           outputFile.AppendLine("<div class=\"test-name\">Test " + (c + 1).ToString() + "</div>"); 
          } 
          else 
          { 
           if (notYet) 
           { 
            if (!grabLine.Contains("</body>") | !grabLine.Contains("</html>")) 
            { 
             outputFile.AppendLine(grabLine); 
            } 
           } 
          } 
         } 
        } 
       } 
       if (c == (endArg - 2)) 
       { 
        bool notYet = false; 
        using (StreamReader sr = new StreamReader(a)) 
        { 
         while (sr.Peek() >= 0) 
         { 
          string grabLine = sr.ReadLine(); 
          if (grabLine.Contains("<body>")) 
          { 
           notYet = true; 
          } 
          if (notYet) 
          { 
           if (grabLine.Contains("<div class=\"test-name\">Coded UI Test Log</div>")) 
           { 
            outputFile.AppendLine("<div class=\"test-name\">Test " + (c + 1).ToString() + "</div>"); 
           } 
           else 
           { 
            outputFile.AppendLine(grabLine); 
           } 
          } 
         } 
        } 
       } 
      } 
      c++; 
     } 
    } 
}