Package ch.agent.crnickl.api

Examples of ch.agent.crnickl.api.UpdatableSchema.addAttribute()


 
  public void test_add_incomplete_series_attribute() {
    try {
      // adding an incomplete, non-erasing series attribute should fail
      UpdatableSchema schema = db.getUpdatableSchemas("schema1f").iterator().next();
      schema.addAttribute(1, 4);
      schema.applyUpdates();
      expectException();
    } catch (Exception e) {
      assertException(e, D.D30105, D.D30113);
    }
View Full Code Here


 
  public void test_add_incomplete_series_attribute_value_required() {
    try {
      // adding an incomplete, non-erasing series attribute should fail
      UpdatableSchema schema = db.getUpdatableSchemas("schema1f").iterator().next();
      schema.addAttribute(1, 4);
      schema.setAttributeProperty(1, 4, db.getProperty("prop2", true));
      // default value is not set, but null is not okay for prop2
      schema.applyUpdates();
      expectException();
    } catch (Exception e) {
View Full Code Here

  }
 
  public void test_add_series_attribute() {
    try {
      UpdatableSchema schema = db.getUpdatableSchemas("schema1f").iterator().next();
      schema.addAttribute(1, 4);
      schema.setAttributeProperty(1, 4, db.getProperty("prop2", true));
      schema.setAttributeDefault(1, 4, "t2v2");
      schema.applyUpdates();
    } catch (Exception e) {
      fail(e.getMessage());
View Full Code Here

  }

  public void test_create_schema_failure_same_attribute_nr() {
    try {
      UpdatableSchema schema = db.createSchema("schema1", null);
      schema.addAttribute(1);
      schema.setAttributeProperty(1, db.getProperty("prop1", true));
      schema.setAttributeDefault(1, "t1v1");
      schema.addAttribute(1);
      schema.applyUpdates();
      expectException();
View Full Code Here

    try {
      UpdatableSchema schema = db.createSchema("schema1", null);
      schema.addAttribute(1);
      schema.setAttributeProperty(1, db.getProperty("prop1", true));
      schema.setAttributeDefault(1, "t1v1");
      schema.addAttribute(1);
      schema.applyUpdates();
      expectException();
    } catch (Exception e) {
      assertException(e, D.D30127);
    }
View Full Code Here

    try {
      UpdatableSchema schema = db.createSchema("schema1", null);
      Collection<Schema> ss = db.getSchemas("schema1");
      assertEquals(0,  ss.size());

      schema.addAttribute(1);
      schema.setAttributeProperty(1, db.getProperty("prop1", true));
      schema.setAttributeDefault(1, "t1v1");
      schema.deleteAttribute(1);
      schema.addAttribute(1);
      schema.applyUpdates();
View Full Code Here

      schema.addAttribute(1);
      schema.setAttributeProperty(1, db.getProperty("prop1", true));
      schema.setAttributeDefault(1, "t1v1");
      schema.deleteAttribute(1);
      schema.addAttribute(1);
      schema.applyUpdates();
      expectException();
    } catch (Exception e) {
      assertException(e, D.D30105, D.D30111);
    }
View Full Code Here

  }
 
  public void test_create_schema_failure_attribute_property_duplicate() {
    try {
      UpdatableSchema schema = db.createSchema("schema1", null);
      schema.addAttribute(1);
      schema.setAttributeProperty(1, db.getProperty("prop1", true));
      schema.setAttributeDefault(1, "t1v1");
      schema.addAttribute(2);
      schema.setAttributeProperty(2, db.getProperty("prop1", true));
      schema.setAttributeDefault(2, "t1v1");
View Full Code Here

    try {
      UpdatableSchema schema = db.createSchema("schema1", null);
      schema.addAttribute(1);
      schema.setAttributeProperty(1, db.getProperty("prop1", true));
      schema.setAttributeDefault(1, "t1v1");
      schema.addAttribute(2);
      schema.setAttributeProperty(2, db.getProperty("prop1", true));
      schema.setAttributeDefault(2, "t1v1");
      schema.applyUpdates();
      schema.resolve();
      expectException();
View Full Code Here

  }

  public void test_create_schema1_and_schema2() {
    try {
      UpdatableSchema schema1 = db.createSchema("schema1", null);
      schema1.addAttribute(1);
      schema1.setAttributeProperty(1, db.getProperty("prop1", true));
      schema1.setAttributeDefault(1, "t1v1");
      schema1.applyUpdates();
      UpdatableSchema schema2 = db.createSchema("schema2", "schema1");
      schema2.addAttribute(1);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.