Пример #1
0
  public void testRunReport() throws Exception {
    MockMartusApp app = MockMartusApp.create();
    app.getLocalization().setCurrentLanguageCode(MiniLocalization.ENGLISH);
    app.loadSampleData();
    BulletinStore store = app.getStore();
    ReportFormat rf = new ReportFormat();
    rf.setDetailSection("$i. $bulletin.localId\n");
    ReportOutput result = new ReportOutput();
    Set leafUids = store.getAllBulletinLeafUids();
    SortableBulletinList list =
        new SortableBulletinList(app.getLocalization(), new MiniFieldSpec[0]);
    Iterator it = leafUids.iterator();
    while (it.hasNext()) {
      DatabaseKey key = DatabaseKey.createLegacyKey((UniversalId) it.next());
      list.add(BulletinLoader.loadFromDatabase(store.getDatabase(), key, app.getSecurity()));
    }

    RunReportOptions options = new RunReportOptions();
    rr.runReport(
        rf, store.getDatabase(), list, result, options, PoolOfReusableChoicesLists.EMPTY_POOL);
    result.close();
    StringBuffer expected = new StringBuffer();
    UniversalId[] uids = list.getSortedUniversalIds();
    for (int i = 0; i < uids.length; ++i) {
      expected.append(Integer.toString(i + 1));
      expected.append(". ");
      expected.append(uids[i].getLocalId());
      expected.append("\n");
    }
    assertEquals(new String(expected), result.getPageText(0));
  }
Пример #2
0
  private void verifySummaryBreaksOnReusableDropdowns(boolean withDetail)
      throws Exception, IOException {
    ReusableChoices choices = new ReusableChoices("choicescode", "Choices Label");
    String aLabel = "Fabulous A";
    choices.add(new ChoiceItem("a", aLabel));
    String bLabel = "Excellent B";
    choices.add(new ChoiceItem("b", bLabel));
    MockMartusApp app = MockMartusApp.create();
    FieldSpecCollection defaultSpecs = app.getStore().getTopSectionFieldSpecs();
    FieldSpecCollection specs = new FieldSpecCollection();
    for (int i = 0; i < defaultSpecs.size(); ++i) specs.add(defaultSpecs.get(i));
    specs.addReusableChoiceList(choices);
    CustomDropDownFieldSpec dropdown = new CustomDropDownFieldSpec();
    dropdown.setTag("dd");
    dropdown.setLabel("Dropdown");
    dropdown.addReusableChoicesCode(choices.getCode());
    specs.add(dropdown);
    app.getStore().setTopSectionFieldSpecs(specs);

    Bulletin b1 = app.createBulletin();
    b1.set(dropdown.getTag(), "a");
    app.saveBulletin(b1, app.getStore().getFolderSaved());
    Bulletin b2 = app.createBulletin();
    b2.set(dropdown.getTag(), "b");
    app.saveBulletin(b2, app.getStore().getFolderSaved());

    MiniLocalization localization = new MiniLocalization();
    MiniFieldSpec[] sortSpecs = new MiniFieldSpec[] {new MiniFieldSpec(dropdown)};
    localization.setCurrentLanguageCode("en");
    ReportFormat report = new TabularReportBuilder(localization).createTabular(sortSpecs);
    ReportOutput destination = new ReportOutput();
    RunReportOptions options = new RunReportOptions();
    options.hideDetail = withDetail;
    options.printBreaks = true;
    options.includePrivate = true;
    ReportRunner runner = new ReportRunner(app.getSecurity(), new MiniLocalization());
    SortableBulletinList bulletins = new SortableBulletinList(localization, sortSpecs);
    bulletins.add(b1);
    bulletins.add(b2);
    runner.runReport(
        report,
        app.getStore().getDatabase(),
        bulletins,
        destination,
        options,
        specs.getAllReusableChoiceLists());
    destination.close();
    String result = destination.getPrintableDocument();
    assertContains(withDetail + " Wrote code instead of label a?", aLabel, result);
    assertContains(withDetail + " Wrote code instead of label b?", bLabel, result);
  }
Пример #3
0
 private ReportOutput runReportOnAppData(
     ReportFormat rf, MockMartusApp app, RunReportOptions options, MiniFieldSpec[] sortSpecs)
     throws IOException, DamagedBulletinException, NoKeyPairException, Exception {
   BulletinStore store = app.getStore();
   MartusCrypto security = app.getSecurity();
   ReadableDatabase db = store.getDatabase();
   Set leafUids = store.getAllBulletinLeafUids();
   MiniLocalization localization = new MiniLocalization();
   localization.setCurrentLanguageCode(MiniLocalization.ENGLISH);
   SortableBulletinList list = new SortableBulletinList(localization, sortSpecs);
   Iterator it = leafUids.iterator();
   while (it.hasNext()) {
     DatabaseKey key = DatabaseKey.createLegacyKey((UniversalId) it.next());
     Bulletin b = BulletinLoader.loadFromDatabase(db, key, security);
     list.add(b);
   }
   ReportOutput result = new ReportOutput();
   rr.runReport(
       rf, store.getDatabase(), list, result, options, PoolOfReusableChoicesLists.EMPTY_POOL);
   result.close();
   return result;
 }
Пример #4
0
  public void testCustomField() throws Exception {
    FieldSpec[] specs =
        new FieldSpec[] {
          FieldSpec.createStandardField("date", new FieldTypeDate()),
          FieldSpec.createStandardField("text", new FieldTypeNormal()),
          FieldSpec.createStandardField("multi", new FieldTypeMultiline()),
          FieldSpec.createStandardField("range", new FieldTypeDateRange()),
          FieldSpec.createStandardField("bool", new FieldTypeBoolean()),
          FieldSpec.createStandardField("language", new FieldTypeLanguage()),
          LegacyCustomFields.createFromLegacy("custom,Custom <label>"),
        };

    MockMartusApp app = MockMartusApp.create();
    app.getLocalization().setCurrentLanguageCode(MiniLocalization.ENGLISH);
    Bulletin b =
        new Bulletin(app.getSecurity(), new FieldSpecCollection(specs), new FieldSpecCollection());
    String sampleCustomData = "Robert Plant";
    b.set("custom", sampleCustomData);
    b.setAllPrivate(false);
    app.saveBulletin(b, app.getFolderDraftOutbox());

    SortableBulletinList list =
        new SortableBulletinList(app.getLocalization(), new MiniFieldSpec[0]);
    list.add(b);
    ReportFormat rf = new ReportFormat();
    rf.setDetailSection("$bulletin.field('custom')");
    ReportOutput result = new ReportOutput();
    RunReportOptions options = new RunReportOptions();
    rr.runReport(
        rf,
        app.getStore().getDatabase(),
        list,
        result,
        options,
        PoolOfReusableChoicesLists.EMPTY_POOL);
    result.close();

    assertEquals(sampleCustomData, result.getPageText(0));
  }