paolo tonella
play

Paolo Tonella tonella@fbk.eu Web testing Crawler Matteo Biagiola, - PowerPoint PPT Presentation

Search Based Testing of Web Applications Paolo Tonella tonella@fbk.eu Web testing Crawler Matteo Biagiola, Filippo Ricca, Paolo Tonella: Search Based Path and Input Data Generation for Web Application Testing . 9th Int. Symposium on Search


  1. Search Based Testing of Web Applications Paolo Tonella tonella@fbk.eu

  2. Web testing Crawler Matteo Biagiola, Filippo Ricca, Paolo Tonella: Search Based Path and Input Data Generation for Web Application Testing . 9th Int. Symposium on Search Based Software Engineering (SSBSE), pp. 18-32, 2017 2

  3. Single Page Applications 3

  4. Model based testing add(n) add(n) onLoad S0 S1 S2 rem(n) rem(n) <add(1), rem(1)> <add(1), rem(1), rem(1)> Divergence 1) how do we get the model? 2) how do we avoid divergences? 3) how do we reduce execution time? 4

  5. Model Construction Page Object API Page Objects Product ProductList class ProductPage extends PageObject { Page Page void selectProductByName(String name){…} double getPrice(){…} void updatePrice(double price){…} Checkout CheckoutPage checkout() {…} Page } HTML Page product: Headphones product: DVD-RW price: 24$ price: 2$ DOM API el = find_element(By.XPATH(‘/html/div/h2/table/div[3]’)); el.getText(); el.setText(’49.99’); el.click(); 5

  6. From Page Objects to Navigation Model selectProduct ProductsPage ProductDetailPage 6

  7. Test derivation add(n) add(n) onLoad S0 S1 S2 rem(n) rem(n) 1) by graph visit algorithms 2) by model checking 3) by search based algorithms 4) by diversity based algorithms 7

  8. Depth-first visit add(n) add(n) onLoad S0 S1 S2 rem(n) rem(n) <add(57), rem(4)> <add(1), add(2), rem(102)> Actual parameter values are filled with random numbers 8

  9. Model checking add(n) add(n) onLoad S0 S1 S2 rem(n) rem(n) TRANS case <add(2), rem(1)> action = add: next(state) = S2; next(items) = items + n; -- server side <add(1), rem(1)> action = rem & state = S2 & items - n > 0 : next(state) = S2; next(items) = items - n; -- server side action = rem & state = S2 & items - n = 0 : next(state) = S1; next(items) = 0; -- server side action = rem & state = S2 & items - n < 0 : next(state) = ERROR; esac LTLSPEC G ( state = S2 & action = rem -> X state != S2 ) LTLSPEC G ( state = S2 & action = rem -> X state != S1 ) 9

  10. Model checking add(n) add(n) onLoad S0 S1 S2 rem(n) rem(n) TRANS case action = add: next(state) = S2; <add(2), rem(1)> -- next(items) = items + n; action = rem & state = S2 & items - n > 0 : <add(1), rem(2)> next(state) = S2; -- next(items) = items - n; action = rem & state = S2 & items - n = 0 : next(state) = S1; Model checker -- next(items) = 0; action = rem & state = S2 & items - n < 0 : sets items to 2 next(state) = ERROR; esac LTLSPEC G ( state = S2 & action = rem -> X state != S2 ) LTLSPEC G ( state = S2 & action = rem -> X state != S1 ) 10

  11. Search based generator Fitness assignment Initialization Reproduction Selection Chromosome : P0 -> P1 P1 -> P4 P4 -> P9 P9 -> P1 m1(2) m3() m4(‘a’) m7() Fitness function : distance from a yet uncovered navigation method. Requires test case execution by Selenium on browser. Genetic operators : crossover and mutation, applied only to feasible path prefixes 11

  12. Crossover: matching tail HEAD 1 TAIL 1 HEAD 2 TAIL 2 P0 -> P1 P1 -> P4 P4 -> P9 P9 -> P1 P4 -> P1 P1 -> P7 P7 -> P3 m1(2) m3() m4(‘a’) m7() m9(‘b’) m5() m2(5) HEAD 1 TAIL 2 P0 -> P1 P1 -> P7 P7 -> P3 m1(2) m5() m2(5) HEAD 2 TAIL 1 P1 -> P4 P4 -> P9 P9 -> P1 P4 -> P1 m3() m4(‘a’) m7() m9(‘b’) HEAD 1 TAIL 2 HEAD 2 TAIL 1 P1 -> P7 P7 -> P3 P4 -> P1 P1 -> P4 P4 -> P9 P9 -> P1 P0 -> P1 m1(2) m5() m2(5) m9(‘b’) m3() m4(‘a’) m7() 12

  13. Crossover: non-matching tail P0 -> P1 P1 -> P4 P4 -> P9 P9 -> P1 P4 -> P5 P5 -> P7 P7 -> P3 m1(2) m3() m4(‘a’) m7() m9(‘b’) m5() m2(5) P5 not reachable from P4 HEAD 1 TAIL 1 P0 -> P1 P1 -> P4 P3 -> P5 P5 -> P7 P7 -> P3 P1 -> P3 m1(2) m3() m6() m5() m2(5) m8(1,0) HEAD 2 TAIL 2 P4 -> P5 P5 -> P4 P4 -> P9 P9 -> P1 m9(‘b’) m11(3) m4(‘a’) m7() 13

  14. Mutation: delete and insert Starting chromosome P0 -> P1 P1 -> P4 P4 -> P9 P9 -> P1 P4 -> P11 m1(2) m3() m4(‘a') m7() m8(1,0) Delete P0 -> P1 P1 -> P4 P4 -> P9 P9 -> P4 P4 -> P11 m1(2) m3() m4() m7() m8(1,0) Insert P0 -> P1 P1 -> P4 P4 -> P11 P11 -> P8 P8 -> P7 P7 -> P12 m1(2) m3() m8(1,0) m5() m6() m9(‘b’) 14

  15. Search based generator Fitness assignment Initialization keep non diverging prefixes that increase coverage Reproduction Selection add(n) add(n) onLoad S0 S1 S2 rem(n) <add(2), add(1), rem(1)> rem(n) <add(2), rem(2)> By construction, only non Evolving a population of diverging navigation paths navigation paths requires many are kept test case executions 15

  16. Diversity based generator D : sequence edit distance id : input distance Distance Initialization assignment (1 test case) Execution Selection (feasible prefix is (max distance kept if cov grows) from prev tests) Non-diverging prefixes that increase coverage 16

  17. Diversity based generator Randomly generated candidates P0 -> P1 P1 -> P4 P4 -> P9 Select candidate at max min P0 -> P1 P1 -> P4 P4 -> P9 P0 -> P1 P1 -> P4 P4 -> P9 m1(1) m5() m4(‘a’) m1(1) m5() m4(‘a’) distance from previously m1(1) m5() m4(‘a’) generated tests and execute it min d = 2 + 1/2 Previously generated P0 -> P1 P1 -> P4 P4 -> P9 tests m1(6) m8() m9(‘z’) Several candidates are evaluated without being P0 -> P1 P1 -> P4 P4 -> P9 P9 -> P1 executed; only the selected m1(2) m3() m4(‘a’) m7() candidate is executed 17

  18. Kolmogorov complexity NCD Initialization assignment (1 test case) Selection Execution (max distance (feasible prefix is from prev tests) kept if cov grows) Conditional Kolmogorov Complexity K(t 1 |t 2 ) : for a string (test case) t 1 , number of bits of the shortest program P(t 2 ) that generates t 1 . Normalized Information Distance ID(t 1 , t 2 ) : given two strings (test cases) t 1 , t 2 : NID(t 1 , t 2 ) = max(K(t 1 |t 2 ), K(t 2 |t 1 )) / max(K(t 1 ), K(t 2 )) Normalized Compression Distance NCD(t 1 , t 2 ) : given two strings (test cases) t 1 , t 2 : NCD(t 1 , t 2 ) = (C(t 1 · t 2 ) - min(C(t 1 ), C(t 2 ))) / max(C(t 1 ), C(t 2 )) 18

  19. Preliminary results using SB AddressBook 19

  20. Coverage 100 95 90 85 80 SubWeb produced a smaller navigation graph and smaller 75 test suites with no divergent test case, and it achieved significantly higher navigation (transition) coverage SubWeb Crawljax 20

  21. Conclusion and future work • Search based generation of web test cases outperforms crawling by reducing divergence and increasing coverage, but it requires execution of all candidates within a browser to select the fittest candidate. • Diversity based on edit/input distance does not require test execution to evaluate the fitness of candidates: • it is more efficient than search based generation; • but it does not address divergence directly; • preliminary results are very encouraging. • Diversity based on information distance , approximated by NCD (Normalized Compression Distance), is promising (e.g., it is potentially less sensitive to repetitions than edit distance), but we do not have empirical results yet: it will be investigated in our future work. 21

Recommend


More recommend