/*
 *
 *  * Copyright 2014 Orient Technologies.
 *  *
 *  * Licensed under the Apache License, Version 2.0 (the "License");
 *  * you may not use this file except in compliance with the License.
 *  * You may obtain a copy of the License at
 *  *
 *  *      http://www.apache.org/licenses/LICENSE-2.0
 *  *
 *  * Unless required by applicable law or agreed to in writing, software
 *  * distributed under the License is distributed on an "AS IS" BASIS,
 *  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  * See the License for the specific language governing permissions and
 *  * limitations under the License.
 *
 */

package com.orientechnologies.lucene.test;

import com.orientechnologies.orient.core.index.OIndex;
import com.orientechnologies.orient.core.metadata.schema.OClass;
import com.orientechnologies.orient.core.metadata.schema.OSchema;
import com.orientechnologies.orient.core.metadata.schema.OType;
import junit.framework.Assert;
import org.testng.annotations.BeforeClass;

/**
 * Created by Enrico Risa on 07/07/15.
 */
public class LuceneCreateJavaApi extends BaseLuceneTest {

  public LuceneCreateJavaApi() {
    super(true);
  }

  @Override
  protected String getDatabaseName() {
    return "JavaApi";
  }

  @BeforeClass
  public void init() {
    initDB();
    OSchema schema = databaseDocumentTx.getMetadata().getSchema();
    OClass v = schema.getClass("V");
    OClass song = schema.createClass("Song");
    song.setSuperClass(v);
    song.createProperty("title", OType.STRING);
    song.createProperty("author", OType.STRING);
    song.createProperty("description", OType.STRING);
  }

  public void testCreateIndex() {
    OSchema schema = databaseDocumentTx.getMetadata().getSchema();

    OClass song = schema.getClass("Song");

    OIndex<?> lucene = song.createIndex("Song.title", OClass.INDEX_TYPE.FULLTEXT.toString(), null, null, "LUCENE",
        new String[] { "title" });

    Assert.assertNotNull(lucene);
  }

  public void testCreateIndexComposite() {
    OSchema schema = databaseDocumentTx.getMetadata().getSchema();

    OClass song = schema.getClass("Song");

    OIndex<?> lucene = song.createIndex("Song.author_description", OClass.INDEX_TYPE.FULLTEXT.toString(), null, null, "LUCENE",
        new String[] { "author", "description" });

    Assert.assertNotNull(lucene);
  }
}