< prev index next >

test/jdk/jdk/jfr/api/recording/settings/TestGetConfigurations.java

Print this page
rev 51054 : imported patch 9000013-aixDisableJFR-requires.patch


  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package jdk.jfr.api.recording.settings;
  26 
  27 import java.util.List;
  28 
  29 import jdk.jfr.Configuration;
  30 import jdk.test.lib.Asserts;
  31 
  32 /*
  33  * @test
  34  * @summary Verifies that there is the default config and that it has
  35  *          the expected parameters
  36  * @key jfr

  37  * @library /test/lib
  38  * @run main/othervm jdk.jfr.api.recording.settings.TestGetConfigurations
  39  */
  40 public class TestGetConfigurations {
  41 
  42     private static final String DEFAULT_CONFIG_NAME = "default";
  43     private static final String DEFAULT_CONFIG_LABEL = "Continuous";
  44     private static final String DEFAULT_CONFIG_DESCRIPTION = "Low overhead configuration safe for continuous use in production environments, typically less than 1 % overhead.";
  45     private static final String DEFAULT_CONFIG_PROVIDER = "Oracle";
  46 
  47     private static final String PROFILE_CONFIG_NAME = "profile";
  48     private static final String PROFILE_CONFIG_LABEL = "Profiling";
  49     private static final String PROFILE_CONFIG_DESCRIPTION = "Low overhead configuration for profiling, typically around 2 % overhead.";
  50     private static final String PROFILE_CONFIG_PROVIDER = "Oracle";
  51 
  52     public static void main(String[] args) throws Throwable {
  53         List<Configuration> predefinedConfigs = Configuration.getConfigurations();
  54         Asserts.assertNotNull(predefinedConfigs, "List of predefined configs is null");
  55         Asserts.assertEquals(predefinedConfigs.size(), 2, "Expected exactly two predefined configurations");
  56 




  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package jdk.jfr.api.recording.settings;
  26 
  27 import java.util.List;
  28 
  29 import jdk.jfr.Configuration;
  30 import jdk.test.lib.Asserts;
  31 
  32 /**
  33  * @test
  34  * @summary Verifies that there is the default config and that it has
  35  *          the expected parameters
  36  * @key jfr
  37  * @requires vm.hasJFR
  38  * @library /test/lib
  39  * @run main/othervm jdk.jfr.api.recording.settings.TestGetConfigurations
  40  */
  41 public class TestGetConfigurations {
  42 
  43     private static final String DEFAULT_CONFIG_NAME = "default";
  44     private static final String DEFAULT_CONFIG_LABEL = "Continuous";
  45     private static final String DEFAULT_CONFIG_DESCRIPTION = "Low overhead configuration safe for continuous use in production environments, typically less than 1 % overhead.";
  46     private static final String DEFAULT_CONFIG_PROVIDER = "Oracle";
  47 
  48     private static final String PROFILE_CONFIG_NAME = "profile";
  49     private static final String PROFILE_CONFIG_LABEL = "Profiling";
  50     private static final String PROFILE_CONFIG_DESCRIPTION = "Low overhead configuration for profiling, typically around 2 % overhead.";
  51     private static final String PROFILE_CONFIG_PROVIDER = "Oracle";
  52 
  53     public static void main(String[] args) throws Throwable {
  54         List<Configuration> predefinedConfigs = Configuration.getConfigurations();
  55         Asserts.assertNotNull(predefinedConfigs, "List of predefined configs is null");
  56         Asserts.assertEquals(predefinedConfigs.size(), 2, "Expected exactly two predefined configurations");
  57 


< prev index next >