forked from apache/doris
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore](regression test) mv test_report_version_missing to p1 (apache…
- Loading branch information
Showing
2 changed files
with
85 additions
and
82 deletions.
There are no files selected for viewing
82 changes: 0 additions & 82 deletions
82
regression-test/suites/control_p0/test_report_version_missing.groovy
This file was deleted.
Oops, something went wrong.
85 changes: 85 additions & 0 deletions
85
regression-test/suites/control_p1/test_report_version_missing.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you 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. | ||
|
||
import org.apache.doris.regression.suite.ClusterOptions | ||
import org.apache.doris.regression.util.NodeType | ||
|
||
import org.awaitility.Awaitility | ||
import static java.util.concurrent.TimeUnit.SECONDS | ||
|
||
suite('test_report_version_missing', 'nonConcurrent,p1') { | ||
if (isCloudMode()) { | ||
return | ||
} | ||
def tableName = 'test_set_replica_status_table_in_docker' | ||
try { | ||
setFeConfig('disable_tablet_scheduler', true) | ||
Thread.sleep(2000) | ||
|
||
sql "DROP TABLE IF EXISTS ${tableName}" | ||
sql """ | ||
CREATE TABLE ${tableName} ( | ||
`id` LARGEINT NOT NULL, | ||
`count` LARGEINT SUM DEFAULT "0") | ||
AGGREGATE KEY(`id`) | ||
DISTRIBUTED BY HASH(`id`) BUCKETS 1 | ||
PROPERTIES | ||
( | ||
"replication_num" = "1" | ||
) | ||
""" | ||
List<String> values = [] | ||
for (int i = 1; i <= 10; ++i) { | ||
values.add("(${i}, ${i})") | ||
} | ||
sql """INSERT INTO ${tableName} VALUES ${values.join(',')}""" | ||
|
||
def result = sql_return_maparray """show tablets from ${tableName}""" | ||
assertNotNull(result) | ||
def tabletId = null | ||
for (def res : result) { | ||
tabletId = res.TabletId | ||
break | ||
} | ||
|
||
GetDebugPoint().enableDebugPointForAllBEs('Tablet.build_tablet_report_info.version_miss', [tablet_id:"${tabletId}", version_miss:true]) | ||
boolean succ = false | ||
|
||
def backendId_to_backendIP = [:] | ||
def backendId_to_backendHttpPort = [:] | ||
getBackendIpHttpPort(backendId_to_backendIP, backendId_to_backendHttpPort) | ||
|
||
backendId_to_backendIP.each { beId, beIp -> | ||
def port = backendId_to_backendHttpPort.get(beId) as int | ||
be_report_tablet(beIp, port) | ||
} | ||
|
||
Awaitility.await().atMost(180, SECONDS).pollInterval(1, SECONDS).await().until({ | ||
def tablets = sql_return_maparray """show tablets from ${tableName}""" | ||
logger.info("show tablets from ${tablets}") | ||
assertNotNull(tablets) | ||
succ = tablets.any { it.TabletId.toLong() == tabletId.toLong() && it.LstFailedVersion.toLong() > 0 } | ||
return succ | ||
}) | ||
|
||
assertTrue(succ) | ||
} finally { | ||
setFeConfig('disable_tablet_scheduler', false) | ||
GetDebugPoint().disableDebugPointForAllBEs('Tablet.build_tablet_report_info.version_miss') | ||
sql "DROP TABLE IF EXISTS ${tableName}" | ||
} | ||
} |