Package com.foundationdb.server.test.it.store

Source Code of com.foundationdb.server.test.it.store.SimpleBlobIT

/**
* Copyright (C) 2009-2013 FoundationDB, LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

package com.foundationdb.server.test.it.store;

import com.foundationdb.ais.model.Index;
import com.foundationdb.ais.model.TestAISBuilder;
import com.foundationdb.qp.row.Row;
import com.foundationdb.server.api.dml.scan.NewRow;
import com.foundationdb.server.test.it.ITBase;
import com.foundationdb.util.WrappingByteSource;

import org.junit.Ignore;
import org.junit.Test;

import java.util.ArrayList;
import java.util.List;

import static org.junit.Assert.assertEquals;

public class SimpleBlobIT extends ITBase {
    private final String SCHEMA = "test";
    private final String TABLE = "blobtest";
   
    private int setUpTable() {
        TestAISBuilder builder = new TestAISBuilder(typesRegistry());
        builder.table(SCHEMA, TABLE);
        builder.column(SCHEMA, TABLE, "a", 0, "MCOMPAT", "int", false);
        builder.column(SCHEMA, TABLE, "b", 1, "MCOMPAT", "blob", false);
        builder.column(SCHEMA, TABLE, "c", 2, "MCOMPAT", "mediumblob", false);
        builder.pk(SCHEMA, TABLE);
        builder.indexColumn(SCHEMA, TABLE, Index.PRIMARY, "a", 0, true, null);
        ddl().createTable(session(), builder.akibanInformationSchema().getTable(SCHEMA, TABLE));
        return tableId(SCHEMA, TABLE);
    }
   
    @Test
    public void testBlobs_1() throws Exception {
        testBlobs(1);
    }

    @Test
    public void testBlobs_2() throws Exception {
        testBlobs(2);
    }

    @Test
    public void testBlobs_3() throws Exception {
        testBlobs(3);
    }

    @Test
    public void testBlobs_4() throws Exception {
        testBlobs(4);
    }

    @Ignore("value_too_large")
    @Test
    public void testBlobs_5() throws Exception {
        testBlobs(5);
    }

    @Ignore("value_too_large")
    @Test
    public void testBlobs_6() throws Exception {
        testBlobs(6);
    }

    private void testBlobs(int rowCount) throws Exception {
        final int tid = setUpTable();
        final List<Row> expected = new ArrayList<>();
        for (int i = 1; i <= rowCount; ++i) {
            int bsize = (int)Math.pow(5, i);
            int csize = (int)Math.pow(10, i);
            Row row = row(tid, i, bigString(bsize), bigString(csize));
            writeRows(row);
            row = row(tid, i, bigBytes(bsize), bigBytes(csize));
            expected.add(row);
        }
        expectRows(
            tid,
            expected
        );
     }

    private byte[] bigString(final int length) {
        final StringBuilder sb= new StringBuilder(length);
        sb.append(length);
        for (int i = sb.length() ; i < length; i++) {
            sb.append("#");
        }
        return sb.toString().getBytes();
    }
    private WrappingByteSource bigBytes (final int length) {
        final StringBuilder sb= new StringBuilder(length);
        sb.append(length);
        for (int i = sb.length() ; i < length; i++) {
            sb.append("#");
        }
        return new WrappingByteSource(sb.toString().getBytes());
    }
}
TOP

Related Classes of com.foundationdb.server.test.it.store.SimpleBlobIT

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.