]> git.sur5r.net Git - i3/i3/commitdiff
Create different IDs for each bar (+test)
authorMichael Stapelberg <michael@stapelberg.de>
Wed, 19 Oct 2011 18:57:39 +0000 (19:57 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 19 Oct 2011 18:57:39 +0000 (19:57 +0100)
src/cfgparse.y
src/main.c
testcases/t/177-bar-config.t

index 6e59c87c69edba85ed13edc39509877d48e7c2a4..2c796af129e63bbce2d7bfa807915f9e7dd34d43 100644 (file)
@@ -934,7 +934,14 @@ bar:
     {
         printf("\t new bar configuration finished, saving.\n");
         /* Generate a unique ID for this bar */
-        current_bar.id = sstrdup("foo"); /* TODO */
+        current_bar.id = sstrdup("bar-XXXXXX");
+        /* This works similar to mktemp in that it replaces the last six X with
+         * random letters, but without the restriction that the given buffer
+         * has to contain a valid path name. */
+        char *x = current_bar.id + strlen("bar-");
+        while (*x != '\0') {
+            *(x++) = (rand() % 26) + 'a';
+        }
 
         /* Copy the current (static) structure into a dynamically allocated
          * one, then cleanup our static one. */
index ffdc1fd32c675f42d24ccf00a7bfb6a8b58773b3..832d7f1b14904c4b15f39325ab9c178e6712262a 100644 (file)
@@ -217,6 +217,8 @@ int main(int argc, char *argv[]) {
     if (!isatty(fileno(stdout)))
         setbuf(stdout, NULL);
 
+    srand(time(NULL));
+
     init_logging();
 
     start_argv = argv;
index 98eb4edd16bcbc1ae943c650e9458c8058e809c3..c7cf2843a528f7adc64508175fb71707bad793df 100644 (file)
@@ -99,9 +99,9 @@ $i3 = i3(get_socket_path(0));
 $bars = $i3->get_bar_config()->recv;
 is(@$bars, 1, 'one bar configured');
 
-my $bar_id = shift @$bars;
+$bar_id = shift @$bars;
 
-my $bar_config = $i3->get_bar_config($bar_id)->recv;
+$bar_config = $i3->get_bar_config($bar_id)->recv;
 is($bar_config->{status_command}, 'i3status --bar', 'status_command correct');
 ok($bar_config->{verbose}, 'verbose on');
 ok(!$bar_config->{workspace_buttons}, 'workspace buttons disabled');
@@ -127,4 +127,39 @@ is_deeply($bar_config->{colors},
 
 exit_gracefully($pid);
 
+#####################################################################
+# ensure that multiple bars get different IDs
+#####################################################################
+
+$config = <<EOT;
+# i3 config file (v4)
+font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
+
+bar {
+    # Start a default instance of i3bar which provides workspace buttons.
+    # Additionally, i3status will provide a statusline.
+    status_command i3status --bar
+
+    output HDMI1
+}
+
+bar {
+    output VGA1
+}
+EOT
+
+$pid = launch_with_config($config);
+
+$i3 = i3(get_socket_path(0));
+$bars = $i3->get_bar_config()->recv;
+is(@$bars, 2, 'two bars configured');
+isnt($bars->[0], $bars->[1], 'bar IDs are different');
+
+my $bar1_config = $i3->get_bar_config($bars->[0])->recv;
+my $bar2_config = $i3->get_bar_config($bars->[1])->recv;
+
+isnt($bar1_config->{outputs}, $bar2_config->{outputs}, 'outputs different');
+
+exit_gracefully($pid);
+
 done_testing;