コード例 #1
0
ファイル: SpaceTest.java プロジェクト: ulrichgenick/hdc
 @Test
 public void delete() throws ModelException {
   DBCollection spaces = Database.getCollection("spaces");
   assertEquals(0, spaces.count());
   Space space = new Space();
   space._id = new ObjectId();
   space.name = "Test space";
   space.owner = new ObjectId();
   space.visualization = new ObjectId();
   space.order = 1;
   space.records = new HashSet<ObjectId>();
   Space.add(space);
   assertEquals(1, spaces.count());
   Space.delete(space.owner, space._id);
   assertEquals(0, spaces.count());
 }
コード例 #2
0
ファイル: SpaceTest.java プロジェクト: ulrichgenick/hdc
 @Test
 public void notExists() throws ModelException {
   DBCollection spaces = Database.getCollection("spaces");
   assertEquals(0, spaces.count());
   Space space = new Space();
   space._id = new ObjectId();
   space.name = "Test space";
   space.owner = new ObjectId();
   space.visualization = new ObjectId();
   space.order = 1;
   space.records = new HashSet<ObjectId>();
   Space.add(space);
   assertEquals(1, spaces.count());
   assertFalse(
       Space.exists(
           new ChainedMap<String, ObjectId>()
               .put("_id", new ObjectId())
               .put("owner", space.owner)
               .get()));
 }
コード例 #3
0
 <T extends Composite> T parse(String stringText, Class<T> compositeClass)
     throws ParsingException, IllegalAccessException, InstantiationException {
   T type;
   try {
     type = compositeClass.newInstance();
     Class componentClass = componentMap.get(compositeClass);
     Matcher matcher = patterns.get(componentClass).matcher(stringText);
     while (matcher.find()) {
       if (componentClass == SentenceToken.class) {
         if (matcher.group().matches(patterns.get(Word.class).toString())) {
           type.add(new Word(matcher.group()));
         }
         if (matcher.group().matches(patterns.get(Numbers.class).toString())) {
           Numbers number = new Numbers();
           number.add(new Integer(matcher.group()));
           type.add(number);
         }
         if (matcher.group().matches(patterns.get(Punctuation.class).toString())) {
           Punctuation punctuation = new Punctuation();
           punctuation.add(matcher.group().charAt(0));
           type.add(punctuation);
         }
         if (matcher.group().matches(patterns.get(Space.class).toString())) {
           Space space = new Space();
           space.add(matcher.group().charAt(0));
           type.add(space);
         }
       } else {
         Component c = parse(matcher.group(), componentClass);
         type.add(c);
       }
     }
     return type;
   } catch (InstantiationException | IllegalAccessException ignored) {
     logger.error("Could not parse the elements of text ");
     throw new ParsingException("Could not parse the elements of text ");
   }
 }