Suppress LicensingDocumentationIT.testPutLicense in release builds (#32613)
The testPutLicense test tries to put a license generated using snapshot keys into release cluster. This commit suppresses the test during the release builds. Closes #32580
This commit is contained in:
parent
992ec4be5d
commit
ada80d7fc8
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
package org.elasticsearch.client.documentation;
|
package org.elasticsearch.client.documentation;
|
||||||
|
|
||||||
import org.apache.lucene.util.LuceneTestCase.AwaitsFix;
|
import org.elasticsearch.Build;
|
||||||
import org.elasticsearch.action.ActionListener;
|
import org.elasticsearch.action.ActionListener;
|
||||||
import org.elasticsearch.action.LatchedActionListener;
|
import org.elasticsearch.action.LatchedActionListener;
|
||||||
import org.elasticsearch.client.ESRestHighLevelClientTestCase;
|
import org.elasticsearch.client.ESRestHighLevelClientTestCase;
|
||||||
|
@ -41,10 +41,10 @@ import static org.hamcrest.Matchers.startsWith;
|
||||||
* Documentation for Licensing APIs in the high level java client.
|
* Documentation for Licensing APIs in the high level java client.
|
||||||
* Code wrapped in {@code tag} and {@code end} tags is included in the docs.
|
* Code wrapped in {@code tag} and {@code end} tags is included in the docs.
|
||||||
*/
|
*/
|
||||||
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/32580")
|
|
||||||
public class LicensingDocumentationIT extends ESRestHighLevelClientTestCase {
|
public class LicensingDocumentationIT extends ESRestHighLevelClientTestCase {
|
||||||
|
|
||||||
public void testPutLicense() throws Exception {
|
public void testPutLicense() throws Exception {
|
||||||
|
assumeTrue("License is only valid when tested against snapshot/test builds", Build.CURRENT.isSnapshot());
|
||||||
RestHighLevelClient client = highLevelClient();
|
RestHighLevelClient client = highLevelClient();
|
||||||
String license = "{\"license\": {\"uid\":\"893361dc-9749-4997-93cb-802e3d7fa4a8\",\"type\":\"gold\"," +
|
String license = "{\"license\": {\"uid\":\"893361dc-9749-4997-93cb-802e3d7fa4a8\",\"type\":\"gold\"," +
|
||||||
"\"issue_date_in_millis\":1411948800000,\"expiry_date_in_millis\":1914278399999,\"max_nodes\":1,\"issued_to\":\"issued_to\"," +
|
"\"issue_date_in_millis\":1411948800000,\"expiry_date_in_millis\":1914278399999,\"max_nodes\":1,\"issued_to\":\"issued_to\"," +
|
||||||
|
|
Loading…
Reference in New Issue