summary refs log tree commit diff stats
path: root/ranger.py
blob: 864acf276680dbce9c4acde62197e3407987932b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/python -O
# This file is part of ranger, the console file manager.  (coding: utf-8)
# License: GNU GPL version 3, see the file "AUTHORS" for details.

# =====================
# This embedded bash script can be executed by sourcing this file.
# It will cd to ranger's last location after you exit it.
# The first argument specifies the command to run ranger, the
# default is simply "ranger". (Not this file itself!)
# The other arguments are passed to ranger.
"""":
tempfile="$(mktemp -t tmp.XXXXXX)"
ranger="${1:-ranger}"
test -z "$1" || shift
"$ranger" --choosedir="$tempfile" "${@:-$(pwd)}"
returnvalue=$?
test -f "$tempfile" &&
if [ "$(cat -- "$tempfile")" != "$(echo -n `pwd`)" ]; then
    cd "$(cat "$tempfile")"
fi
rm -f -- "$tempfile"
return $returnvalue
""" and None

import sys
from os.path import exists, abspath

# Need to find out whether or not the flag --clean was used ASAP,
# because --clean is supposed to disable bytecode compilation
argv = sys.argv[1:sys.argv.index('--')] if '--' in sys.argv else sys.argv[1:]
sys.dont_write_bytecode = '-c' in argv or '--clean' in argv

# Don't import ./ranger when running an installed binary at /usr/.../ranger
if __file__[:4] == '/usr' and exists('ranger') and abspath('.') in sys.path:
    sys.path.remove(abspath('.'))

# Start ranger
import ranger
sys.exit(ranger.main())
41e55d57da093eafa25e20c'>d25d6b45 ^
a472ce65 ^
d25d6b45 ^
a472ce65 ^


31321077 ^
a2726b6a ^

31321077 ^
d25d6b45 ^
31321077 ^



a2726b6a ^

31321077 ^
71c2be59 ^




31321077 ^
d25d6b45 ^
31321077 ^


23842e52 ^
a2726b6a ^

23842e52 ^
a2726b6a ^
23842e52 ^
d25d6b45 ^
23842e52 ^

23842e52 ^

a2726b6a ^

23842e52 ^
a2726b6a ^

d25d6b45 ^
23842e52 ^
d25d6b45 ^
23842e52 ^

23842e52 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86

                   

                   

                   
                     
 

                             



               

                            



                

                                  
 
                                    
                                
 
                                                       


                               
 

                                    
 
                                    
                                
                             
 
                                                       


                                
 

                                      
 
                                           



                                   

                                      
 




                                               
 
                                           


                                   
 

                                         
 
                                   
 
                                               

                                 

 

                             
 

                                   
                                      
 
                                               

                                
 
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>

#include "xmpp/muc.h"

void
muc_before_test(void** state)
{
    muc_init();
}

void
muc_after_test(void** state)
{
    muc_close();
}

void
test_muc_invites_add(void** state)
{
    char* room = "room@conf.server";
    muc_invites_add(room, NULL);

    gboolean invite_exists = muc_invites_contain(room);

    assert_true(invite_exists);
}

void
test_muc_remove_invite(void** state)
{
    char* room = "room@conf.server";
    muc_invites_add(room, NULL);
    muc_invites_remove(room);

    gboolean invite_exists = muc_invites_contain(room);

    assert_false(invite_exists);
}

void
test_muc_invites_count_0(void** state)
{
    int invite_count = muc_invites_count();

    assert_true(invite_count == 0);
}

void
test_muc_invites_count_5(void** state)
{
    muc_invites_add("room1@conf.server", NULL);
    muc_invites_add("room2@conf.server", NULL);
    muc_invites_add("room3@conf.server", NULL);
    muc_invites_add("room4@conf.server", NULL);
    muc_invites_add("room5@conf.server", NULL);

    int invite_count = muc_invites_count();

    assert_true(invite_count == 5);
}

void
test_muc_room_is_not_active(void** state)
{
    char* room = "room@server.org";

    gboolean room_is_active = muc_active(room);

    assert_false(room_is_active);
}

void
test_muc_active(void** state)
{
    char* room = "room@server.org";
    char* nick = "bob";
    muc_join(room, nick, NULL, FALSE);

    gboolean room_is_active = muc_active(room);

    assert_true(room_is_active);
}