1// Copyright 2025 RisingWave Labs
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.
1415// Tests below only work in debug mode.
16#[cfg(debug_assertions)]
17#[cfg(test)]
18mod tests {
19use expect_test::expect;
20use thiserror_ext::AsReport as _;
2122use crate::{Feature, LicenseKey, LicenseManager, TEST_PAID_LICENSE_KEY_CONTENT};
2324fn do_test(key: &str, cpu_core_count: usize, expect: expect_test::Expect) {
25let manager = LicenseManager::new();
26 manager.refresh(LicenseKey(key));
27 manager.update_cpu_core_count(cpu_core_count);
2829match Feature::TestPaid.check_available_with(&manager) {
30Ok(_) => expect.assert_eq("ok"),
31Err(error) => expect.assert_eq(&error.to_report_string()),
32 }
33 }
3435#[test]
36fn test_no_limit() {
37 do_test(TEST_PAID_LICENSE_KEY_CONTENT, 114514, expect!["ok"]);
38 }
3940#[test]
41fn test_invalid_license_key() {
42const KEY: &str = "invalid";
4344 do_test(
45 KEY,
460,
47expect![
48"feature TestPaid is not available due to license error: invalid license key: InvalidToken"
49],
50 );
51 do_test(
52 KEY,
53114514,
54expect![
55"feature TestPaid is not available due to license error: invalid license key: InvalidToken"
56],
57 );
58 }
5960#[test]
61fn test_limit() {
62const KEY: &str = "eyJhbGciOiJSUzUxMiIsInR5cCI6IkpXVCJ9.\
63 eyJzdWIiOiJwYWlkLXRlc3QtMzIiLCJpc3MiOiJ0ZXN0LnJpc2luZ3dhdmUuY29tIiwidGllciI6InBhaWQiLCJleHAiOjIxNTA0OTU5OTksImlhdCI6MTczNzYxMjQ5NSwiY3B1X2NvcmVfbGltaXQiOjMyfQ.\
64 SQpX2Dmon5Mb04VUbHyxsU7owJhcdLZHqUefxAXBwG5AqgKdpfS0XUePW5E4D-EfxtH_cWJiD4QDFsfdRUz88g_n_KvfNUObMW7NV5TUoRs_ImtS4ySugExNX3JzJi71QqgI8kugStQ7uOR9kZ_C-cCc_IG2CwwEmhhW1Ij0vX7qjhG5JNMit_bhxPY7Rh27ppgPTqWxJFTTsw-9B7O5WR_yIlaDjxVzk0ALm_j6DPB249gG3dkeK0rP0AK_ip2cK6iQdy8Cge7ATD6yUh4c_aR6GILDF6-vyB7QdWU6DdQS4KhdkPNWoe_Z9psotcXQJ7NhQ39hk8tdLzmTfGDDBA";
6566 do_test(KEY, 31, expect!["ok"]);
67 do_test(KEY, 32, expect!["ok"]);
68 do_test(
69 KEY,
7033,
71expect![
72"feature TestPaid is not available due to license error: the license key is currently not effective because the CPU core in the cluster (33) exceeds the maximum allowed by the license key (32); consider removing some nodes or acquiring a new license key with a higher limit"
73],
74 );
75 }
76}