/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the "Elastic License
 * 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
 * Public License v 1"; you may not use this file except in compliance with, at
 * your election, the "Elastic License 2.0", the "GNU Affero General Public
 * License v3.0 only", or the "Server Side Public License, v 1".
 */

package org.elasticsearch.action.search;

import org.elasticsearch.index.Index;
import org.elasticsearch.index.shard.ShardId;
import org.elasticsearch.test.ESTestCase;
import org.elasticsearch.test.EqualsHashCodeTestUtils;

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

public class SearchShardTests extends ESTestCase {

    public void testEqualsAndHashcode() {
        String index = randomAlphaOfLengthBetween(5, 10);
        SearchShard searchShard = new SearchShard(
            randomBoolean() ? null : randomAlphaOfLengthBetween(3, 10),
            new ShardId(index, index + "-uuid", randomIntBetween(0, 1024))
        );
        EqualsHashCodeTestUtils.checkEqualsAndHashCode(searchShard, s -> new SearchShard(s.clusterAlias(), s.shardId()), s -> {
            if (randomBoolean()) {
                return new SearchShard(s.clusterAlias() == null ? randomAlphaOfLengthBetween(3, 10) : null, s.shardId());
            } else {
                String indexName = s.shardId().getIndexName();
                int shardId = s.shardId().getId();
                if (randomBoolean()) {
                    indexName += randomAlphaOfLength(5);
                } else {
                    shardId += randomIntBetween(1, 1024);
                }
                return new SearchShard(s.clusterAlias(), new ShardId(indexName, indexName + "-uuid", shardId));
            }
        });
    }

    public void testCompareTo() {
        List<SearchShard> searchShards = new ArrayList<>();
        Index index0 = new Index("index0", "index0-uuid");
        Index index1 = new Index("index1", "index1-uuid");
        searchShards.add(new SearchShard(null, new ShardId(index0, 0)));
        searchShards.add(new SearchShard(null, new ShardId(index1, 0)));
        searchShards.add(new SearchShard(null, new ShardId(index0, 1)));
        searchShards.add(new SearchShard(null, new ShardId(index1, 1)));
        searchShards.add(new SearchShard(null, new ShardId(index0, 2)));
        searchShards.add(new SearchShard(null, new ShardId(index1, 2)));
        searchShards.add(new SearchShard("", new ShardId(index0, 0)));
        searchShards.add(new SearchShard("", new ShardId(index1, 0)));
        searchShards.add(new SearchShard("", new ShardId(index0, 1)));
        searchShards.add(new SearchShard("", new ShardId(index1, 1)));

        searchShards.add(new SearchShard("remote0", new ShardId(index0, 0)));
        searchShards.add(new SearchShard("remote0", new ShardId(index1, 0)));
        searchShards.add(new SearchShard("remote0", new ShardId(index0, 1)));
        searchShards.add(new SearchShard("remote0", new ShardId(index0, 2)));
        searchShards.add(new SearchShard("remote1", new ShardId(index0, 0)));
        searchShards.add(new SearchShard("remote1", new ShardId(index1, 0)));
        searchShards.add(new SearchShard("remote1", new ShardId(index0, 1)));
        searchShards.add(new SearchShard("remote1", new ShardId(index1, 1)));

        List<SearchShard> sorted = new ArrayList<>(searchShards);
        Collections.sort(sorted);
        assertEquals(searchShards, sorted);
    }
}
