Package er.selenium

Examples of er.selenium.SeleniumTest$Comment


    boolean failed = false;
    SeleniumTestRCRunner runner = new SeleniumTestRCRunner(host, port, browserType, appHost);
    runner.prepare();
    try {
      for (File testFile : testsFiles) {
        SeleniumTest test = null;
        try {
          SeleniumCompositeTestFilter testFilter = new SeleniumCompositeTestFilter();
          File[] searchPaths = {testFile.getAbsoluteFile().getParentFile(), testsRoot.getAbsoluteFile()};
          testFilter.addTestFilter(new SeleniumIncludeTestFilter(new NSArray<File>(searchPaths)));
          testFilter.addTestFilter(new SeleniumRepeatExpanderTestFilter());
          testFilter.addTestFilter(new SeleniumOverrideOpenTestFilter(appHost));
         
          test = new SeleniumTestFileProcessor(testFile, testFilter).process();
          log.debug("running: " + testFile);
          runner.run(test);
         
          log.info(String.format("test '%s' PASSED", testFile));
          log.info("");
        } catch (SeleniumTestFailureException e) {
          failed = true;
         
          log.error(String.format("test '%s' FAILED: %s", testFile, e));
          log.error("test log:");
          int curCommand = 0;
          for (SeleniumTest.Element elem: test.elements()) {
            if (elem instanceof SeleniumTest.Command) {
              if (curCommand++ > e.processedCommands()) {
                break;
              }
              SeleniumTest.Command command = (SeleniumTest.Command)elem;
View Full Code Here


          fileContents = ERXFileUtilities.stringFromFile(fio, CharEncoding.UTF_8);
        } catch (IOException e) {
          log.error("Can't read " + fio.getAbsolutePath() + " contents");
          throw new RuntimeException(e);
        }
        SeleniumTest processedTest = importer.process(fileContents);
        return processedTest.elements();
      }     
    }
   
    throw new RuntimeException("Included path not found: " + name);
  }
View Full Code Here

          break;
        default:
          elements.add(new SeleniumTest.Comment(line));
        }
      }
      return new SeleniumTest("", elements);
    } catch (IOException e) {
      throw new RuntimeException("Internal error during parsing", e);
    } catch (RuntimeException e) {
      throw new RuntimeException("Error on line " + lineNumber + " during parsing", e);
    }
View Full Code Here

      }
    } catch (Exception e) {
      throw new RuntimeException("Error parsing document.", e);
    }
   
    SeleniumTest test = new SeleniumTest(name, elements);
    test.dump();
    return test;
  }
View Full Code Here

        String commentString = "";
        EList comments = element.getOwnedComments();

        for (Iterator iterator = comments.iterator(); iterator.hasNext();)
        {
            final Comment comment = (Comment)iterator.next();
            if (!commentString.equalsIgnoreCase(""))
            {
                commentString = commentString + "\n\n";
            }
            commentString = commentString.concat(comment.getBody());
        }
        return cleanText(commentString);
    }
View Full Code Here

        final Collection comments = this.metaObject.getOwnedComments();
        if (comments != null && !comments.isEmpty())
        {
            for (final Iterator commentIterator = comments.iterator(); commentIterator.hasNext();)
            {
                final Comment comment = (Comment)commentIterator.next();
                String commentString = StringUtils.trimToEmpty(comment.getBody());

                if (StringUtils.isEmpty(commentString))
                {
                    commentString = StringUtils.trimToEmpty(comment.toString());
                }
                documentation.append(StringUtils.trimToEmpty(commentString));
                documentation.append(SystemUtils.LINE_SEPARATOR);
            }
        }
View Full Code Here

    public void testRTOutputDocumentFull() {
      Document doc = new Document();
      DocType dt = new DocType("root");
      dt.setInternalSubset(" ");
      doc.addContent(dt);
      doc.addContent(new Comment("This is a document"));
      doc.addContent(new ProcessingInstruction("jdomtest", ""));
      Element e = new Element("root");
      e.addContent(new EntityRef("ref"));
      doc.addContent(e);
      roundTripDocument(doc);
View Full Code Here

   
  @Test
  public void testRTOutputList() {
    List<Content> list = new ArrayList<Content>();
    list.add(new ProcessingInstruction("jdomtest", ""));
    list.add(new Comment("comment"));
    list.add(new Element("root"));
    roundTripFragment(list);
  }
View Full Code Here

  @Ignore
  // TODO
  public void testOutputFragmentList() {
    List<Content> list = new ArrayList<Content>();
    list.add(new ProcessingInstruction("jdomtest", ""));
    list.add(new Comment("comment"));
    list.add(new CDATA("foo"));
    list.add(new Element("root"));
    list.add(new Text("bar"));
    roundTripFragment(list);
  }
View Full Code Here

  @Test
  @Ignore
  // TODO
  public void testOutputFragmentContent() {
    roundTripFragment(new ProcessingInstruction("jdomtest", ""));
    roundTripFragment(new Comment("comment"));
    roundTripFragment(new CDATA("foo"));
    roundTripFragment(new Element("root"));
    roundTripFragment(new Text("bar"));
  }
View Full Code Here

TOP

Related Classes of er.selenium.SeleniumTest$Comment

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.