public void T23_Jazz()
        {
            JazzConnectionParams jcp = new JazzConnectionParams();
            Jazz            jazz     = new Jazz(jcp.Repository, RuS.Jazz.Jazz.repositoryType.ccm, jcp.User, jcp.PW);
            JazzProjectArea pa       = jazz.GetJazzProjectAreaByName("xxx");

            Assert.IsNull(pa);
        }
        //[ExpectedException(typeof(RuS.Jazz.AuthenticationException))]
        public void T22_Jazz()
        {
            JazzConnectionParams jcp = new JazzConnectionParams();
            Jazz jazz = new Jazz(jcp.Repository, RuS.Jazz.Jazz.repositoryType.ccm, jcp.User, jcp.PW + "x");

            //JazzProjectArea pa = jazz.GetJazzProjectAreaByName("xxx");
            Assert.That(() => jazz.GetJazzProjectAreaByName("xxx"),
                        Throws.TypeOf <RuS.Jazz.AuthenticationException>());
        }
        public void T25_Jazz()
        {
            JazzConnectionParams jcp = new JazzConnectionParams();
            Jazz            jazz     = new Jazz(jcp.Repository, RuS.Jazz.Jazz.repositoryType.ccm, jcp.User, jcp.PW);
            JazzProjectArea pa       = jazz.GetJazzProjectAreaByName("PLM-helmerichs_play");

            Assert.IsNotNull(pa);
            foreach (JazzTeamArea ta in pa.JazzTeamAreas())
            {
                JazzTeamArea ta2 = pa.GetJazzTeamAreaByName(ta.Name);
                Assert.IsNotNull(ta2);
                Assert.That(ta.Name == ta2.Name);
            }
        }
        public void T26_Jazz()
        {
            JazzConnectionParams jcp = new JazzConnectionParams();
            Jazz            jazz     = new Jazz(jcp.Repository, RuS.Jazz.Jazz.repositoryType.ccm, jcp.User, jcp.PW);
            JazzProjectArea pa       = jazz.GetJazzProjectAreaByName("PLM-helmerichs_play");

            Assert.IsNotNull(pa);
            JazzTeamArea s_ta = pa.GetJazzTeamAreaByName("Helmerichs Team 1");

            Assert.IsNotNull(s_ta);
            JazzTeamArea t_ta = pa.GetJazzTeamAreaByName("RolTeam 2 Subteam 1");

            Assert.IsNotNull(t_ta);
        }
        public void T24_Jazz()
        {
            JazzConnectionParams jcp = new JazzConnectionParams();
            Jazz jazz = new Jazz(jcp.Repository, RuS.Jazz.Jazz.repositoryType.ccm, jcp.User, jcp.PW);
            int  i    = 0;

            foreach (JazzProjectArea p_a in jazz.JazzProjectAreas())
            {
                i++;
            }
            Assert.That(i > 1);
            JazzProjectArea pa = jazz.GetJazzProjectAreaByName("PLM-helmerichs_play");

            Assert.IsNotNull(pa);
        }
        public void T27_Jazz()
        {
            JazzConnectionParams jcp = new JazzConnectionParams();
            Jazz            jazz     = new Jazz(jcp.Repository, RuS.Jazz.Jazz.repositoryType.ccm, jcp.User, jcp.PW);
            JazzProjectArea pa       = jazz.GetJazzProjectAreaByName("PLM-helmerichs_play");

            Assert.IsNotNull(pa);
            JazzTeamArea s_ta = pa.GetJazzTeamAreaByName("Helmerichs Team 1");

            Assert.IsNotNull(s_ta);
            JazzTeamArea t_ta = pa.GetJazzTeamAreaByName("RolTeam 2 Subteam 1");

            Assert.IsNotNull(t_ta);
            foreach (JazzMember m in s_ta.JazzTeamMembers())
            {
                if (!t_ta.HasMemberWithName(m.JazzMemberUser.Name))
                {
                    t_ta.AddMember(m);
                }
            }
            t_ta.PostNewMembers();
        }
Exemple #7
0
        static int Main(string[] args)
        {
            const string idstring = "@(#)GenMailAddresses 1.9 2018/04/20 R&S 6DSE";
            bool         write_id = true;
            int          exitCode = 0;
            StreamWriter sw       = null;

            try
            {
                rtOptions = ArgumentsHandling.getOptionsFromArguments(args);
                if (rtOptions.opt_verbose)
                {
                    Console.WriteLine(idstring);
                    Console.WriteLine();
                    write_id = false;
                }
                if (rtOptions.outfile != null)
                {
                    sw = new StreamWriter(rtOptions.outfile, false, Encoding.UTF8);
                }

                if ((rtOptions.user == null) || (rtOptions.passwd == null))
                {
                    // He 7-mar-2014: Write idstring only if not already written due to verbose option
                    if (write_id)
                    {
                        Console.WriteLine(idstring);
                        Console.WriteLine();
                        write_id = false;
                    }
                    if (rtOptions.user == null)
                    {
                        rtOptions.user = getUsername();
                    }
                    if (rtOptions.passwd == null)
                    {
                        rtOptions.passwd = getPassword();
                    }
                    Console.WriteLine();
                }

                RuS.Jazz.Jazz.repositoryType repoType;
                if (rtOptions.opt_rm)
                {
                    repoType = RuS.Jazz.Jazz.repositoryType.rm;
                }
                else
                {
                    repoType = RuS.Jazz.Jazz.repositoryType.ccm;
                }

                Jazz         jazz        = new Jazz(rtOptions.jazzRepository, repoType, rtOptions.user, rtOptions.passwd);
                string       projectArea = "<ALL AREAS>";
                mailing_list mlist       = new mailing_list();

                if (rtOptions.opt_all_areas)
                {
                    foreach (JazzProjectArea pa in jazz.JazzProjectAreas())
                    {
                        if (pa.isArchived)
                        {
                            continue;
                        }

                        if (rtOptions.opt_verbose)
                        {
                            Console.WriteLine("Scanning ProjectArea '{0}'", pa.Name);
                        }
                        foreach (JazzMember m in pa.JazzProjectMembers())
                        {
                            mlist.AddMember(m);
                        }
                        if (rtOptions.opt_recursive)
                        {
                            foreach (JazzTeamArea s_ta in pa.JazzTeamAreas())
                            {
                                if (s_ta.isArchived)
                                {
                                    continue;
                                }
                                addSubTeamArea(mlist, s_ta, pa.Name);
                            }
                        }
                    }
                }
                else
                {
                    string[] a_arr = rtOptions.area.Split('\\');
                    projectArea = a_arr[0];

                    JazzProjectArea pa = jazz.GetJazzProjectAreaByName(projectArea);
                    if (pa == null)
                    {
                        throw new NotFoundException("ProjectArea '" + projectArea + "' not found");
                    }

                    JazzTeamArea ta = null;
                    for (int i = 1; i < a_arr.Length; i++)
                    {
                        if (ta == null)
                        {
                            ta = pa.GetJazzTeamAreaByName(a_arr[i]);
                        }
                        else
                        {
                            ta = ta.GetJazzSubTeamAreaByName(a_arr[i]);
                        }

                        if (ta == null)
                        {
                            throw new NotFoundException("TeamArea '" + a_arr[i] + "' not found within ProjectArea '" + projectArea + "'");
                        }
                    }
                    if (ta == null)
                    {
                        if (rtOptions.opt_verbose)
                        {
                            Console.WriteLine("Scanning ProjectArea '{0}'", projectArea);
                        }
                        foreach (JazzMember m in pa.JazzProjectMembers())
                        {
                            mlist.AddMember(m);
                        }
                        if (rtOptions.opt_recursive)
                        {
                            foreach (JazzTeamArea s_ta in pa.JazzTeamAreas())
                            {
                                if (s_ta.isArchived)
                                {
                                    continue;
                                }
                                addSubTeamArea(mlist, s_ta, projectArea);
                            }
                        }
                    }
                    else
                    {
                        if (rtOptions.opt_verbose)
                        {
                            Console.WriteLine("Scanning TeamArea '{0}\\{1}'", projectArea, ta.Name);
                        }
                        foreach (JazzMember m in ta.JazzTeamMembers())
                        {
                            mlist.AddMember(m);
                        }
                        if (rtOptions.opt_recursive)
                        {
                            foreach (JazzTeamArea s_ta in ta.JazzTeamAreas())
                            {
                                if (s_ta.isArchived)
                                {
                                    continue;
                                }
                                addSubTeamArea(mlist, s_ta, projectArea + "\\" + ta.Name);
                            }
                        }
                    }
                }

                if (rtOptions.opt_verbose)
                {
                    Console.WriteLine("-------------------------");
                    Console.WriteLine("Resulting mail addresses:");
                    Console.WriteLine("-------------------------");
                }
                if (sw != null)
                {
                    sw.WriteLine(idstring);
                    //sw.WriteLine();
                    //sw.WriteLine(DateTime.Now.ToString());
                    sw.WriteLine();
                    sw.WriteLine("Mail addresses as of {0:r} for members of", DateTime.Now);
                    sw.WriteLine("  Jazz server : {0}", rtOptions.jazzRepository);
                    sw.WriteLine("  Account used: {0}", rtOptions.user);
                    sw.WriteLine("  Project area: {0}", projectArea);
                    if (!rtOptions.opt_all_areas)
                    {
                        if (rtOptions.area.Length > (projectArea.Length + 1))
                        {
                            sw.WriteLine("  Team area   : {0}", rtOptions.area.Replace(projectArea + "\\", string.Empty));
                        }
                    }
                    if (rtOptions.opt_recursive)
                    {
                        sw.WriteLine();
                        sw.WriteLine("  Recursive mode ON: Members of all subordinate team areas are included.");
                    }
                    if (rtOptions.roles != null)
                    {
                        sw.WriteLine();
                        sw.WriteLine("  Mail addresses are restricted to members with the following roles:");
                        for (int i = 0; i < rtOptions.roles.Count; i++)
                        {
                            if (rtOptions.roles[i] == string.Empty)
                            {
                                sw.WriteLine("    <NO ROLE>");
                            }
                            else
                            {
                                sw.WriteLine("    {0}", rtOptions.roles[i]);
                            }
                        }
                    }
                    sw.WriteLine();
                }

                string mailaddr_out         = string.Empty;
                int    mailaddr_count       = 0;
                int    mailaddr_block_count = 0;
                foreach (string ma in mlist.mailaddresses())
                {
                    string ma_l = ma.ToLower();
                    if (ma_l.Contains("@nop.rsint.net"))
                    {
                        continue;
                    }
                    mailaddr_count++;
                    mailaddr_block_count++;
                    if (mailaddr_block_count > 500)
                    {
                        Console.WriteLine(mailaddr_out + "\n");
                        if (sw != null)
                        {
                            sw.WriteLine(mailaddr_out);
                            sw.WriteLine();
                        }
                        mailaddr_out         = string.Empty;
                        mailaddr_block_count = 0;
                    }
                    if (mailaddr_out != string.Empty)
                    {
                        mailaddr_out += ";";
                    }
                    mailaddr_out += ma_l;
                }
                if (mailaddr_count == 0)
                {
                    Console.WriteLine("<MAIL ADDRESS LIST EMPTY: No matching members found>");
                    if (sw != null)
                    {
                        sw.WriteLine("<MAIL ADDRESS LIST EMPTY: No matching members found>");
                    }
                }
                else
                {
                    Console.WriteLine(mailaddr_out);
                    if (sw != null)
                    {
                        sw.WriteLine(mailaddr_out);
                    }
                }
            }
            catch (RuS.Jazz.AuthenticationException ex)
            {
                if (write_id && !rtOptions.opt_verbose)
                {
                    Console.WriteLine(idstring);
                    Console.WriteLine();
                }
                Console.WriteLine("Exception occurred, message: {0}\n", ex.Message);
                exitCode = 3;
            }
            catch (NotFoundException ex)
            {
                if (write_id && !rtOptions.opt_verbose)
                {
                    Console.WriteLine(idstring);
                    Console.WriteLine();
                }
                Console.WriteLine("Exception occurred, message: {0}\n", ex.Message);
                exitCode = 4;
            }
            catch (NoArgumentsException)
            {
                Console.WriteLine(idstring);
                Console.WriteLine();
                Console.WriteLine(ArgumentsHandling.getUsageMessage("GenMailAddresses"));
                exitCode = 1;
            }
            catch (ArgumentsParseException ex)
            {
                Console.WriteLine(idstring);
                Console.WriteLine();
                Console.WriteLine(ex.Message);
                Console.WriteLine();
                Console.WriteLine(ArgumentsHandling.getUsageMessage("GenMailAddresses"));
                exitCode = 1;
            }
            catch (Exception ex)
            {
                if (write_id && !rtOptions.opt_verbose)
                {
                    Console.WriteLine(idstring);
                    Console.WriteLine();
                }
                Console.WriteLine("Exception occurred, message: {0}\n", ex.Message);
                exitCode = 9;
            }
            finally
            {
                if (sw != null)
                {
                    sw.Close();
                }
            }
            return(exitCode);
        }