86 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ system ? builtins.currentSystem,
 | 
						|
  config ? {},
 | 
						|
  pkgs ? import ../.. { inherit system config; }
 | 
						|
}:
 | 
						|
 | 
						|
with pkgs.lib;
 | 
						|
 | 
						|
let
 | 
						|
  makeKafkaTest = name: kafkaPackage: (import ./make-test-python.nix ({
 | 
						|
    inherit name;
 | 
						|
    meta = with pkgs.stdenv.lib.maintainers; {
 | 
						|
      maintainers = [ nequissimus ];
 | 
						|
    };
 | 
						|
 | 
						|
    nodes = {
 | 
						|
      zookeeper1 = { ... }: {
 | 
						|
        services.zookeeper = {
 | 
						|
          enable = true;
 | 
						|
        };
 | 
						|
 | 
						|
        networking.firewall.allowedTCPPorts = [ 2181 ];
 | 
						|
        virtualisation.memorySize = 1024;
 | 
						|
      };
 | 
						|
      kafka = { ... }: {
 | 
						|
        services.apache-kafka = {
 | 
						|
          enable = true;
 | 
						|
          extraProperties = ''
 | 
						|
            offsets.topic.replication.factor = 1
 | 
						|
            zookeeper.session.timeout.ms = 600000
 | 
						|
          '';
 | 
						|
          package = kafkaPackage;
 | 
						|
          zookeeper = "zookeeper1:2181";
 | 
						|
          # These are the default options, but UseCompressedOops doesn't work with 32bit JVM
 | 
						|
          jvmOptions = [
 | 
						|
            "-server" "-Xmx1G" "-Xms1G" "-XX:+UseParNewGC" "-XX:+UseConcMarkSweepGC" "-XX:+CMSClassUnloadingEnabled"
 | 
						|
            "-XX:+CMSScavengeBeforeRemark" "-XX:+DisableExplicitGC" "-Djava.awt.headless=true" "-Djava.net.preferIPv4Stack=true"
 | 
						|
          ] ++ optionals (! pkgs.stdenv.isi686 ) [ "-XX:+UseCompressedOops" ];
 | 
						|
        };
 | 
						|
 | 
						|
        networking.firewall.allowedTCPPorts = [ 9092 ];
 | 
						|
        # i686 tests: qemu-system-i386 can simulate max 2047MB RAM (not 2048)
 | 
						|
        virtualisation.memorySize = 2047;
 | 
						|
      };
 | 
						|
    };
 | 
						|
 | 
						|
    testScript = ''
 | 
						|
      start_all()
 | 
						|
 | 
						|
      zookeeper1.wait_for_unit("default.target")
 | 
						|
      zookeeper1.wait_for_unit("zookeeper.service")
 | 
						|
      zookeeper1.wait_for_open_port(2181)
 | 
						|
 | 
						|
      kafka.wait_for_unit("default.target")
 | 
						|
      kafka.wait_for_unit("apache-kafka.service")
 | 
						|
      kafka.wait_for_open_port(9092)
 | 
						|
 | 
						|
      kafka.wait_until_succeeds(
 | 
						|
          "${kafkaPackage}/bin/kafka-topics.sh --create "
 | 
						|
          + "--zookeeper zookeeper1:2181 --partitions 1 "
 | 
						|
          + "--replication-factor 1 --topic testtopic"
 | 
						|
      )
 | 
						|
      kafka.succeed(
 | 
						|
          "echo 'test 1' | "
 | 
						|
          + "${kafkaPackage}/bin/kafka-console-producer.sh "
 | 
						|
          + "--broker-list localhost:9092 --topic testtopic"
 | 
						|
      )
 | 
						|
    '' + (if name == "kafka_0_9" then ''
 | 
						|
      assert "test 1" in kafka.succeed(
 | 
						|
          "${kafkaPackage}/bin/kafka-console-consumer.sh "
 | 
						|
          + "--zookeeper zookeeper1:2181 --topic testtopic "
 | 
						|
          + "--from-beginning --max-messages 1"
 | 
						|
      )
 | 
						|
    '' else ''
 | 
						|
      assert "test 1" in kafka.succeed(
 | 
						|
          "${kafkaPackage}/bin/kafka-console-consumer.sh "
 | 
						|
          + "--bootstrap-server localhost:9092 --topic testtopic "
 | 
						|
          + "--from-beginning --max-messages 1"
 | 
						|
      )
 | 
						|
    '');
 | 
						|
  }) { inherit system; });
 | 
						|
 | 
						|
in with pkgs; {
 | 
						|
  kafka_2_4  = makeKafkaTest "kafka_2_4"  apacheKafka_2_4;
 | 
						|
  kafka_2_5  = makeKafkaTest "kafka_2_5"  apacheKafka_2_5;
 | 
						|
}
 |