Package com.avaje.tests.query.other

Source Code of com.avaje.tests.query.other.TestSelfParent

package com.avaje.tests.query.other;

import java.util.List;

import org.junit.Assert;
import org.junit.Test;

import com.avaje.ebean.BaseTestCase;
import com.avaje.ebean.Ebean;
import com.avaje.tests.model.selfref.SelfParent;

public class TestSelfParent extends BaseTestCase {

  @Test
  public void test() {

    SelfParent root = new SelfParent("root", null);
    SelfParent child1 = new SelfParent("child1", root);
    SelfParent child11 = new SelfParent("child11", child1);
    SelfParent child111 = new SelfParent("child111", child11);
    SelfParent child12 = new SelfParent("child12", child1);

    SelfParent child2 = new SelfParent("child2", root);
    SelfParent child21 = new SelfParent("child21", child2);
    SelfParent child22 = new SelfParent("child22", child2);

    Ebean.save(root);
    Ebean.save(child1);
    Ebean.save(child11);
    Ebean.save(child111);
    Ebean.save(child12);
    Ebean.save(child2);
    Ebean.save(child21);
    Ebean.save(child22);

    List<SelfParent> roots = Ebean.find(SelfParent.class).where().eq("parent", null).findList();

    Assert.assertEquals(1, roots.size());

    printNode(roots.get(0));

  }

  public static void printNode(SelfParent o) {
    System.out.println(o.getName());
    for (SelfParent c : o.getChildren()) {
      printNode(c);
    }
  }

}
TOP

Related Classes of com.avaje.tests.query.other.TestSelfParent

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.