Line data Source code
1 : // Copyright (C) 2018 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.testing; 16 : 17 : import com.google.common.collect.ImmutableList; 18 : import com.google.gerrit.server.change.MergeabilityComputationBehavior; 19 : import org.eclipse.jgit.lib.Config; 20 : 21 0 : public class IndexConfig { 22 : public static Config create() { 23 10 : return createFromExistingConfig(new Config()); 24 : } 25 : 26 : public static Config createFromExistingConfig(Config cfg) { 27 10 : cfg.setInt("index", null, "maxPages", 10); 28 : // To avoid this flakiness indexing mergeable is disabled for the tests as it incurs background 29 : // reindex calls. 30 10 : cfg.setEnum( 31 : "change", null, "mergeabilityComputationBehavior", MergeabilityComputationBehavior.NEVER); 32 10 : cfg.setString("trackingid", "query-bug", "footer", "Bug:"); 33 10 : cfg.setString("trackingid", "query-bug", "match", "QUERY\\d{2,8}"); 34 10 : cfg.setString("trackingid", "query-bug", "system", "querytests"); 35 10 : cfg.setStringList( 36 10 : "trackingid", "query-google", "footer", ImmutableList.of("Issue", "Google-Bug-Id")); 37 10 : cfg.setString( 38 : "trackingid", 39 : "query-google", 40 : "match", 41 : "(?:[Bb]ug|[Ii]ssue|b/)[ \\t]*\\r?\\n?[ \\t]*#?(\\d+)"); 42 10 : cfg.setString("trackingid", "query-google", "system", "querygo"); 43 10 : return cfg; 44 : } 45 : 46 : public static Config createForLucene() { 47 5 : Config cfg = create(); 48 5 : cfg.setString("index", null, "type", "lucene"); 49 5 : return cfg; 50 : } 51 : 52 : public static Config createForFake() { 53 5 : return create(); 54 : } 55 : }