/*
 * DISCLAIMER
 *
 * Copyright 2016 ArangoDB GmbH, Cologne, Germany
 *
 * 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.
 *
 * Copyright holder is ArangoDB GmbH, Cologne, Germany
 */

package com.arangodb.example.document;

import com.arangodb.entity.BaseDocument;
import com.arangodb.example.ExampleBase;
import com.arangodb.velocypack.VPackBuilder;
import com.arangodb.velocypack.ValueType;
import org.junit.Test;

import java.util.concurrent.ExecutionException;

import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.notNullValue;
import static org.junit.Assert.assertThat;

/**
 * @author Mark Vollmary
 */
public class InsertDocumentExample extends ExampleBase {

    @Test
    public void insertBean() throws ExecutionException, InterruptedException {
        collection.insertDocument(new TestEntity("bar"))
                .whenComplete((doc, ex) -> assertThat(doc.getKey(), is(notNullValue())))
                .get();
    }

    @Test
    public void insertBaseDocument() throws ExecutionException, InterruptedException {
        final BaseDocument value = new BaseDocument();
        value.addAttribute("foo", "bar");
        collection.insertDocument(value)
                .whenComplete((doc, ex) -> assertThat(doc.getKey(), is(notNullValue())))
                .get();
    }

    @Test
    public void insertVPack() throws ExecutionException, InterruptedException {
        final VPackBuilder builder = new VPackBuilder();
        builder.add(ValueType.OBJECT).add("foo", "bar").close();
        collection.insertDocument(builder.slice())
                .whenComplete((doc, ex) -> assertThat(doc.getKey(), is(notNullValue())))
                .get();
    }

    @Test
    public void insertJson() throws ExecutionException, InterruptedException {
        collection.insertDocument("{\"foo\":\"bar\"}")
                .whenComplete((doc, ex) -> assertThat(doc.getKey(), is(notNullValue())))
                .get();
    }

}