kdelibs/kio/tests/kionetrctest.cpp
Ivailo Monev 3339338121 generic: prepare for Katie changes
note that kDebug(), kWarning(), etc. automatically add end of line

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-11-13 00:46:32 +02:00

68 lines
2 KiB
C++

#include <kapplication.h>
#include <kdebug.h>
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include "authinfo.h"
void output( const KUrl& u )
{
kDebug() << "Looking up auto login for: " << u.url();
KIO::NetRC::AutoLogin l;
bool result = KIO::NetRC::self()->lookup( u, l, true );
if ( !result )
{
kDebug() << "Either no .netrc and/or .kionetrc file was "
"found or there was problem when attempting to "
"read from them! Please make sure either or both "
"of the above files exist and have the correct "
"permission, i.e. a regular file owned by you with "
"with a read/write permission (0600)";
return;
}
kDebug() << "Type: " << l.type << '\n'
<< "Machine: " << l.machine << '\n'
<< "Login: " << l.login << '\n'
<< "Password: " << l.password;
QMap<QString,QStringList>::ConstIterator it = l.macdef.constBegin();
for ( ; it != l.macdef.constEnd(); ++it )
{
kDebug() << "Macro: " << it.key() << "= "
<< it.value().join(" ");
}
}
int main(int argc, char **argv)
{
const char *version = "0.5";
KLocalizedString description = ki18n("Unit test for .netrc and kionetrc parser.");
KCmdLineOptions options;
options.add("+command", ki18n("[url1,url2 ,...]"));
KCmdLineArgs::init( argc, argv, "kionetrctest", 0, ki18n("KIO-netrc-test"), version, description );
KCmdLineArgs::addCmdLineOptions( options );
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
int count = args->count();
KApplication app;
if ( !count )
args->usage();
else
{
KUrl u;
for( int i=0 ; i < count; i++ )
{
u = args->arg(i);
if ( !u.isValid() )
{
kDebug() << u.url() << " is invalid! Ignoring...";
continue;
}
output( u );
}
}
args->clear();
return 0;
}